22
votes
7answers
1k views
Locking Executing Files: Windows does, Linux doesn’t. Why?
I noticed when a file is executed on Windows (.exe or .dll), it is locked and cannot be deleted, moved or modified.
Linux, on the other hand, does not lock executing files and you can delete, move, …
18
votes
8answers
8k views
How do I check if a file exists using python
How do i check if a file exists, using python. without using a try: statement?
16
votes
17answers
1k views
When is it okay to check if a file exists?
File systems are volatile. This means that you can't trust the result of one operation to still be valid for the next one, even if it's the next line of code. You can't just say if (some file exists …
15
votes
9answers
822 views
Storing a large number of images
I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands.
At the database I'll point to the url of the image, but here's the problem: I know …
12
votes
12answers
3k views
How many files in a directory is too many?
Does it matter how many files I keep in a single directory? If so, how many files in a directory is too many, and what are the impacts of having too many files? (This is on a Linux server.)
…
10
votes
10answers
843 views
How to quickly find added / removed files?
I am writing a little program that creates an index of all files on my directories. It basically iterates over each file on the disk and stores it into a searchable database, much like Unix's locate. …
9
votes
6answers
1k views
Best Filesystem for Solid State Disk? [closed]
I know that filesystems that journal are a bad idea, but what other considerations come into play?
9
votes
1answer
271 views
How can I simulate ext3 filesystem corruption?
I would like to simulate filesystem corruption for the purpose of testing how our embedded systems react to it and ultimately have them fail as gracefully as possible. We use different kinds of block …
9
votes
19answers
4k views
What is a better file copy alternative than the Windows default?
I need to copy hundreds of gigs of random files around on my computer and am pretty leery of using the vanilla file copy built into Windows.
I don't want it to hang on a "Are you sure?", "Are you …
9
votes
17answers
3k views
Best Filesystem to use for Desktop Linux?
I'm going to be building a fancy new desktop soon, and I want to experiment with file systems. I know that ext3 is the most common for linux, but what about ext4, or zfs? Are their any pros or cons to …
8
votes
4answers
259 views
How do I iterate through a directory in Common Lisp?
I'm using OpenMCL on Darwin, and I'd like to do something like:
(loop for f in (directory "somedir")
collect (some-per-file-processing f))
But I can't get directory to return anything other than …
8
votes
8answers
420 views
Why do directory listings contain the current (.) and parent (..) directory?
Whenever I list the contents of a directory with a function like readdir, the returned file names also include "." and "..". I have the suspicion that these are just normal links in the file system …
8
votes
9answers
4k views
How to uninstall a windows service and delete its files without rebooting
My current project involves deploying an upgraded .exe file that runs as a Windows Service. In order to overwrite the existing .exe with the new version, I currently need to:
(1) stop the service
…
8
votes
5answers
2k views
What’s the best way to check if a file exists in C? (cross platform)
Is there a better way than simply trying to open the file?
int exists(const char *fname)
{
FILE *file;
if (file = fopen(fname, "r"))
{
fclose(file);
return 1;
}
…
8
votes
7answers
7k views
‘lsof’ equivalent for windows
One of my favourite tools for linux is lsof - a real swiss army knife!
Today I found myself wondering which programs on a WinXP system had a specific file open. Is there any equivalent utility to …
