14
votes
10answers
1k views
Wait until file is unlocked in .Net
What's the simplest way of blocking a thread until a file has been unlocked and is accessible for reading and renaming? EG: Is there a WaitOnFile() somewhere in the framework?
I have a service that …
14
votes
12answers
2k views
CSV File Imports in .Net
I realize this is a newbie question, but I'm looking for a simple solution - it seems like there should be one.
What's the best way to import a CSV file into a strongly-typed data structure? Again …
12
votes
11answers
801 views
Why should files end with a newline?
I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?
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.)
…
12
votes
6answers
1k views
Python - When to use file vs open
What's the difference between file and open in Python? When should I use which one? (Say I'm in 2.5)
11
votes
13answers
495 views
Nested using statements in C#
I am working on a project and have to compare two files and see if they match eachother excatly.
My first draft before alot of error checking and validation came up with:
DirectoryInfo di = new …
11
votes
6answers
1k views
Command line tool to delete folder with a specified name recursively in Windows?
I want to delete every "_svn" in every folder and subfolder...
For example
c:\
proyect1
_svn
images
_svn
banner
_svn
buttons
_svn
Then I run something like
…
11
votes
4answers
2k views
How do I delete a read-only file?
I've got a junk directory where I toss downloads, one-off projects, email drafts, and other various things that might be useful for a few days but don't need to be saved forever. To stop this …
11
votes
3answers
1k views
How to get an absolute file name in Python?
Given a path such as
"mydir/myfile.txt"
How do I find the absolute filename relative to the current working directory in Python? E.g. on Windows, I might end up with:
…
10
votes
3answers
253 views
Why would I care about IOExceptions when a file is closed?
I've see this sort of thing in Java code quite often...
try
{
fileStream.close();
}
catch (IOException ioe)
{
/* Ignore. We do not care. */
}
Is this reasonable, or cavalier?
When would I …
10
votes
8answers
916 views
What is the fastest way to read a large number of small files into memory ?
I need to read ~50 files on every server start and place each text file's representation into memory. Each text file will have its own string (which is the best type to use for the string holder?).
…
10
votes
10answers
833 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. …
10
votes
14answers
6k views
How check if given string is legal (allowed) file name under Windows?
I want to include batch file rename functionality in my application. User can type destination filename pattern and (after replacing some wildcards in pattern) I need to check if it's going to be …
9
votes
5answers
769 views
Why do Objective C files use the .m extension?
Since I started learning Objective C and Cocoa, I've been wondering why did they choose the extension .m for the implementation files - was it supposed to mean something, or was it just a random …
9
votes
8answers
676 views
Linux: Removing files that don’t contain all the words specified
Inside a directory, how can I delete files that lack any of the words specified, so that only files that contain ALL the words are left? I tried to write a simple bash shell script using grep and rm …
