A block of arbitrary information, or resource for storing information, which is available to a computer program and is usually based on some kind of durable storage.
143
votes
11answers
69k views
Include JavaScript file inside JavaScript file?
Is there something similar to @import in CSS in JavaScript that allows you to include a JavaScript file inside a JavaScript file?
84
votes
7answers
34k views
Standard concise way to copy a file in Java?
It has always bothered me that the only way to copy a file in Java involves opening streams, declaring a buffer, reading in one file, looping through it, and writing it out to the other steam. The ...
80
votes
8answers
29k views
How can I get Eclipse to show .* files?
By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.
69
votes
13answers
32k 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.)
...
68
votes
7answers
39k views
How to get file creation & modification date/times in Python?
I have a script that needs to do some stuff based on file creation & modification dates but has to run on Linux & Windows.
What's the best cross-platform way to get file creation & ...
63
votes
9answers
103k views
How can I get a file's size in C? [closed]
Possible Duplicate:
How do you determine the size of a file in C?
How can I find out the size of a file? I opened with an application written in C.
I would like to know the size, because I ...
52
votes
6answers
43k views
C# - How to get Program Files (x86) on Vista x64
I'm using:
FileInfo(
System.Environment.GetFolderPath(
System.Environment.SpecialFolder.ProgramFiles)
+ @"\MyInstalledApp"
In order to determine if a program is detected on a users ...
49
votes
3answers
49k views
Ant task to check if a file exists?
Is there an ANT Task that would execute a block only if a given file exists? I have the problem that I have a generic ant script that should do some special processing but only if a specific ...
45
votes
6answers
17k views
Best way to require all files from a directory in ruby?
What's the best way to require all files from a directory in ruby ?
45
votes
17answers
23k 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 ...
44
votes
13answers
28k views
Create a temporary directory in Java
Is there a standard and reliable way of creating a temporary directory inside a Java application? There's an entry in Sun's issue database, which has a bit of code in the comments, but I wonder if ...
39
votes
23answers
2k views
Why should I use a human readable file format?
Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case?
EDIT:
I did have this as an explanation when initially posting the ...
37
votes
13answers
33k views
How to construct a relative path in Java from two absolute paths (or URLs)?
Given two absolue paths, e.g.
/var/data/stuff/xyz.dat
/var/data
How can one create a relative path that uses the second path as its base? In the example above, the result should be: ./stuff/xyz.dat
36
votes
14answers
17k views
How do I watch a file for changes using Python?
I have a log file being written by another process which I want to watch for changes. Each time a change occurrs I'd like to read the new data in to do some processing on it.
What's the best way to ...
34
votes
12answers
28k views
How do I convert dos files to linux files in vim?
If I open files I created in windows, the lines all end with ^M.
How do I delete them all in once?
34
votes
12answers
35k views
In Python, how do I get the path and name of the file that is currently executing?
I have scripts calling other script files but I need to get the filepath of the file that is currently running within the process.
For example, let's say I have three files. Using execfile, ...
33
votes
12answers
14k views
Get last n lines of a file with Python, similar to tail
I'm writing a log file viewer for a web application and for that I want to paginate through the lines of the log file. The items in the file are line based with the newest item on the bottom.
So I ...
32
votes
5answers
11k views
Changing Vim indentation behavior by file type
Could someone explain to me simply the easiest way to change the indentation behavior of vim based on the file type? For instance if I open a python file it would indent with 2 spaces, but if I open ...
32
votes
13answers
15k 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 ...
31
votes
7answers
30k views
Search and replace a line in a file in Python
I want to loop over the contents of a text file and do a search and replace on some lines and write the result back to the file. I could first load the whole file in memory and then write it back, but ...
31
votes
13answers
10k views
How do you dynamically load a javascript file? (Think C's #include)
How can you reliably and dynamically load a javascript file? This will can be used to implement a module or component that when 'initialized' the component will dynamically load all needed javascript ...
30
votes
11answers
22k views
In C# check that filename is *possibly* valid (not that it exists)
Is there a method in the System.IO namespace that checks the validity of a filename?
Example:
'C:\foo\bar' would validate
':"~-*' would not
a little trickier:
'X:\foo\bar' would validate is there is ...
30
votes
3answers
21k views
How do I remove/delete a folder that is not empty with Python?
I am getting an 'access is denied' error when I attempt to delete a folder that is not empty. I used the following command in my attempt: os.remove("/folder_name"). What is the most effective way of ...
29
votes
1answer
6k views
Record file copy operation with Git
When I move a file in git using git-mv the status shows that the file has been renamed and even if I alter some portions it still considers to be almost the same thing (which is good because it lets ...
29
votes
6answers
5k 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)
28
votes
6answers
15k views
Java NIO FileChannel versus FileOutputstream performance / usefulness
I am trying to figure out if there is any difference in performance (or advantages) when we use nio FileChannel versus normal FileInputStream/FileOuputStream to read and write files to filesystem. I ...
28
votes
4answers
15k views
28
votes
13answers
7k 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? For example, is there a WaitOnFile() somewhere in the .NET Framework?
I have a ...
26
votes
14answers
4k 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 ...
26
votes
6answers
18k views
Remove a symlink to a directory
I have a symlink to an important directory. I want top get rid of that symlink, while keeping the directory behind it.
I tried 'rm' and get back "rm: cannot remove 'foo'".
I tried 'rmdir' and got ...
25
votes
13answers
3k 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?
25
votes
5answers
36k views
How do I modify a text file in Python?
I'm using Python, and would like to insert a string into a text file without deleting or copying the file. How can I do that?
24
votes
3answers
375 views
new File(“”) vs. new File(“.”): Feature or Bug?
new File("") and new File(".") yield the same canonical path, yet the former object is unsubable. Consider below code, and how both objects return the same canonical path. The documentation states the ...
24
votes
6answers
3k views
How can duplicates be removed from a file using COBOL?
The input file have records as: 8712351,8712353,8712353,8712354,8712356,8712352,8712355
8712352,8712355
Using COBOL I need to remove duplicates from the above file and write to an output file. I
...
24
votes
4answers
37k views
How can I get a list of files in a directory using C or C++?
How can I determine the list of files in a directory from inside my C or C++ code?
I'm not allowed to execute the 'ls' command and parse the results from within my program.
24
votes
5answers
9k 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 ...
24
votes
3answers
26k views
Best way to list files in Java, sorted by Date Modified?
I want to get a list of files in a directory, but I want to sort it such that the oldest files are first. My solution was to call File.listFiles and just resort the list based on File.lastModified, ...
23
votes
10answers
1k views
Is “34KB” or “34 KB” more correct?
When I am displaying a file size to a user, is "34KB" or "34 KB" more correct?
23
votes
2answers
11k views
Using MultipartPostHandler to POST form-data with Python
Problem: When POSTing data with Python's urllib2, all data is URL encoded and sent as Content-Type: application/x-www-form-urlencoded. When uploading files, the Content-Type should instead be set to ...
22
votes
4answers
642 views
Retrieving files from directory that contains large amount of files
I have directory that contains nearly 14,000,000 audio samples in *.wav format.
All plain storage, no subdirectories.
I want to loop through the files, but when I use DirectoryInfo.GetFiles() on ...
22
votes
4answers
2k views
Create a file in memory for user to download, not through server
Is there any way I can create a text file on the client side and prompt the user to download it, without any interaction with the server?
I know I can't write directly to their machine (security and ...
22
votes
11answers
17k views
How to compare 2 files fast using .NET?
Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte.
Would a checksum comparison such as CRC be faster?
Are there any .NET libraries that can generate a ...
22
votes
3answers
4k views
How do I join two paths in C#?
I searched StackOverflow for the title of this question, but I didn't find anything ... so, how do I join two file paths ?
22
votes
7answers
7k views
Best method for reading newline delimited files in Python and discarding the newlines?
I am trying to determine the best way to handle getting rid of newlines when reading in newline delimited files in Python.
What I've come up with is the following code, include throwaway code to ...
22
votes
8answers
8k 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
...
21
votes
3answers
10k views
NodeJS: Write to file
I've been trying to find a way to write to file when using NodeJS, but no success. Can you help me with this.
Thanks.
21
votes
9answers
42k views
Java : How to determine the correct charset encoding of a stream
With reference to the following thread:
http://stackoverflow.com/questions/498636/java-app-unable-to-read-iso-8859-1-encoded-file-correctly
What is the best way to programatically determine the ...
21
votes
6answers
11k views
WPF/C#: Where should I be saving user preferences files?
What is the recommended location to save user preference files? Is there a recommended method for dealing with user preferences?
Currently I use the path returned from ...
21
votes
5answers
5k views
Natural Sort Order in C#
Anyone have a good resource or provide a sample of a natural order sort in C# for an FileInfo array? I am implementing the IComparer interface in my sorts.
21
votes
23answers
19k views
What is a better file copy alternative than the Windows default? [closed]
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 ...