0
votes
2answers
33 views
Is a file available to be opened?
Short version: I think I'm asking for a file too soon, but it's pretending like it's ready. Am I missing something?
Slightly longer version: I am writing files to disk. Before I do so, I have the …
1
vote
1answer
71 views
Are there any issues with having huge folders? [closed]
My site requires 10,000+ 1-2 seconds mp3 clips, saved as individual files. They are each about 12Kb in size.
Are there any potential issues with storing them all in one huge folder as word_1.mp3, …
0
votes
2answers
28 views
php move_uploaded_file not working on Windows 7 only
I've got a project that I am setting up file uploads for. The project is in Zend, but I am using PHP's $_FILES array and move_uploaded_file to save the files. This was working perfectly on my …
0
votes
8answers
90 views
php file… how to spread my code around
hi,
i am writing a web site with a php on the server side. which i have never used before.
if i get it right it is procedural programming (which is another thing that i have never done)
my question …
1
vote
0answers
18 views
CreateFileMapping with multiple threads
hey.
im trying to use 2 threads running simultaneously and both using FileMapping feature to map a file on memory via different handles.
problem is the MapViewOfFile function sometimes allocates the …
0
votes
1answer
26 views
Headers from Remote Server with CDN
I have a CDN that is storing media files. Each file I want to store as just the ID number of the file in the data so, file.zip = 4423342 on the server. The problem is, the CDN does not allow php or …
-2
votes
0answers
16 views
Palm Desktop Files format [closed]
Hi David,
you asked what I used to recognize PD files formats.
I researched them "manually" using eyes and hands and hex editor. :-)
Regards,
Oleg.
0
votes
1answer
34 views
Access to a path denied trying to write and read a file in asp.net web application
Hi friends,
I have file writing permission denied problem in my web application,
below is the error i'm getting
Access to the path 'c:\inetpub\wwwroot\autohyperlink\files\test.txt' is denied.
…
0
votes
1answer
20 views
Control pdb file output from build defintion file
Hello,
I am trying to generate a release build with no pdb files generated. I have seen numerous posts that suggest right-clicking on the project, selecting Properties, going to the Build tab and …
1
vote
4answers
77 views
Java - HowTo extract MimeType from a byte[]
Hi all,
I've a web page that that can be used to upload files.
Now I need to check if the file type is correct (zip, jpg, pdf,...).
I can use the mimeType that comes with the request but I don't …
1
vote
1answer
11 views
Merging ‘<Files>’ directives in .htaccess?
My .htaccess file looks like this:
<Files misc>
ForceType application/x-httpd-php
</Files>
<Files computers>
ForceType application/x-httpd-php
</Files>
<Files …
0
votes
3answers
90 views
System call in unix: directories and files
hi I'm trying to understand system calls: directories and files on unix, .. I found this website where they explain some calls with their own examples, but do not understand these code snippets ..
…
0
votes
3answers
34 views
Copying files in Xcode
I've created some files in Xcode.
Now I want to copy some of them.
How should I do that?
Currently, I copy them in Finder & copy those back into Xcode in order to work on them.
There must be a …
0
votes
5answers
67 views
Bash || within if []; block
I have code matching:
if [ $LAST_MODIFIED -lt 3600 || ! -f "$i" ]; then
wget $WGET_OPTS $BASE$i
LAST_MODIFIED=`echo "\`date +%s\` - \`stat -c %Y $i\`" | bc`
if [ $LAST_MODIFIED -lt 500 ]; …
0
votes
0answers
20 views
How to Copy a large set of files from a sub folder to the installer
Hi All,
I would like to know how to copy a large set of files Eg: I have 100 files in folder named ABC
It will be a herculean task to mention it each file component by component instead is there any …
