Tagged Questions
File I/O is reading from and writing to files.
127
votes
80answers
61k views
File I/O in Every Programming Language [closed]
This has to be a common question that all programmers have from time to time.
How do I read a line from a text file? Then the next question is always how do i write it back.
Of course most of you ...
59
votes
6answers
31k views
Ruby - Convert File to String
I need an easy way to take a tar file and convert it into a string (and vice versa). Is there a way to do this in Ruby? My best attempt was this:
file = File.open("path-to-file.tar.gz")
contents = ""
...
58
votes
11answers
41k views
Is there a way to check if a file is in use?
I'm writing a program in C# that needs to repeatedly access 1 image file. Most of the time it works, but if my computer's running fast, it will try to access the file before it's been saved back to ...
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 ...
37
votes
3answers
9k views
Read whole ASCII file into C++ std::string
I need to read a whole file into memory and place it in a C++ std::string.
If I were to read it into a char, the answer would be very simple:
std::ifstream t;
int lenght;
t.open("file.txt"); // ...
36
votes
11answers
4k views
Slowdown of Microsoft Visual Studio due to different Virus scanner
What is the least slow Virus scanner to use with Microsoft Visual Studio
I have just had Microsoft Visual Studio “go slow” on me again due to my Virus Checker… (100s of Projects, some with over 100 ...
34
votes
9answers
40k views
Objective-C: Reading a file line by line
What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
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
4answers
24k views
Creating application shortcut in a directory
How do you create an application shortcut (.lnk file) in C# or using the .NET framework?
The result would be a .lnk file to the specified application or URL.
29
votes
15answers
10k views
mmap() vs. reading blocks
I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and ...
28
votes
4answers
11k views
When should I use mmap for file access?
POSIX environments provide at least two ways of accessing files. There's the standard system calls open(), read(), write(), and friends, but there's also the option of using mmap() to map the file ...
27
votes
1answer
579 views
iPhone command line Unit Tests (and File I/O)
The short question is: How can I get iPhone (objective-c) file operations to work correctly from a command line Unit Test?
The long question, with explanation: This will eventually become a script to ...
27
votes
3answers
34k views
Reading binary file in Python
In Python, how do I read a binary file and loop over each byte of that file?
23
votes
3answers
306 views
Speeding up file I/O: mmap() vs. read()
My apologies if this has been covered elsewhere and my search has not found it.
Mmap-vs-reading-blocks
is a similar problem to what I am working and provided a good starting point on this problem, ...
23
votes
4answers
23k views
Ant: How to execute a command for each file in directory?
I want to execute a command from an Ant buildfile, for each file in a directory.
I am looking for a platform-independent solution.
How do I do this?
Sure, I could write a script in some scripting ...
22
votes
8answers
2k views
Fastest Way to Serve a File Using PHP
I'm trying to put together a function that receives a file path, identifies what it is, sets the appropriate headers, and serves it just like Apache would.
The reason I am doing this is because I ...
21
votes
7answers
12k views
How do I check if a file exists? (Java on Windows)
How can I check whether a file exists, before openinging it for reading in Java? (equivalent of Perl's -e $filename).
The only similar question on SO dealt with writing the file and was thus ...
21
votes
6answers
13k views
Lazy Method for Reading Big File in Python?
I have a very big file 4GB and when I try to read it my computer hangs.
So I want to read it piece by piece and after processing each piece store the processed piece into another file and read next ...
19
votes
6answers
3k views
Haskell IO and closing files
When I open a file for reading in Haskell, I've found that I can't use the contents of the file after closing it. For example, this program will print the contents of a file:
main = do inFile <- ...
18
votes
3answers
6k views
How to write to a file in scala?
For reading there is the useful abstraction Source. How can I write lines to a text file?
18
votes
4answers
2k views
Unit Testing File I/O
Reading through the existing unit testing related threads here on Stack Overflow, I couldn't find one with a clear answer about how to unit test file I/O operations. I have only recently started ...
17
votes
6answers
12k views
Java IO implementation of unix/linux “tail -f”
I'm wondering what techniques and/or library to use to implement the functionality of the linux command "tail -f ". I'm essentially looking for a drop in add-on/replacement for java.io.FileReader. ...
17
votes
7answers
11k views
How do I create a temporary file with Cocoa?
Years ago when I was working with C# I could easily create a temporary file and get its name with this function:
Path.GetTempFileName();
This function would create a file with a unique name in the ...
17
votes
6answers
2k views
How to obtain good concurrent read performance from disk
I'd like to ask a question then follow it up with my own answer, but also see what answers other people have.
We have two large files which we'd like to read from two separate threads concurrently. ...
16
votes
5answers
3k views
Scanner vs. BufferedReader
As far I know, the two most common methods of reading character-based data from a file in Java is using Scanner or BufferedReader. I also know that the BufferedReader read files efficiently by using ...
16
votes
2answers
4k views
Whats the deal with boost.asio and file i/o?
I've noticed that boost.asio has a lot of examples involving sockets, serial ports, and all sorts of non-file examples. Google hasn't really turned up a lot for me that mentions if asio is a good or ...
16
votes
14answers
3k views
What is the best way to slurp a file into a string in Perl?
Yes, There's More Than One Way To Do It™ but there must be a canonical or most efficient or most concise way. I'll add answers I know of and see what percolates to the top.
To be clear, the ...
15
votes
4answers
2k views
Read a file one line at a time in node.js?
I am trying to read a large file one line at a time. I found a question on Quora that dealt with the subject but I'm missing some connections to make the whole thing fit together.
(link to the Quora ...
15
votes
10answers
1k views
python-like Java IO library?
Java is not my main programming language so I might be asking the obvious.
But is there a simple file-handling library in Java, like in python?
For example I just want to say:
File f = ...
15
votes
2answers
4k views
Does HTML5 allow you to interact with local client files from within a browser
I've seen some posts regarding access to files on a client machine by a webpage, namely this question.
I'm trying to hop on the "continuously update in the cloud" paradigm for some algorithms I am ...
15
votes
10answers
6k views
How to calculate the entropy of a file?
How to calculate the entropy of a file? (Or let's just say a bunch of bytes)
I have an idea, but I'm not sure that it's mathematically correct.
My idea is the following:
Create an array of 256 ...
15
votes
5answers
6k views
How do I use Java to read from a file that is actively being written?
I have an application that writes information to file. This information is used post-execution to determine pass/failure/correctness of the application. I'd like to be able to read the file as it is ...
14
votes
1answer
378 views
Exposing a file-like object from Cython
I need to expose a file-like object from a C library that i'm wrapping with a Cython module. I want to reuse python's generic io code for stuff like buffering, readline(), etc.
The new IO module ...
14
votes
6answers
639 views
200,000 images in single folder in linux, perfomance issue or not?
I have a php/mysql website with over 200,000 images in single folder (linux server). I don't think, that I will never need to see them in file explorer, instead they will be viewed on website on ...
14
votes
9answers
2k views
Java io ugly try-finally block
Is there a not so ugly way of treat the close() exception to close both streams then:
InputStream in = new FileInputStream(inputFileName);
OutputStream out = new ...
14
votes
5answers
4k views
What is the difference between StreamWriter.Flush() and StreamWriter.Close()?
What is the difference in functionality between StreamWriter.Flush() and StreamWriter.Close()?
When my data wasn't being written correctly to a file, I added both Flush() and Close() to the end of my ...
14
votes
2answers
476 views
Http and file uploading - How does it really work (under the hood)
Ok this may seem like a bit of a noob question but one many Web developers I know dont have a full understanding of.
Basically how does a file uploading from a web page file input box to a webserver ...
14
votes
7answers
3k views
How can I determine if a file is binary or text in c#?
I need to determine in 80% if a file is binary or text, is there any way to do it even quick and dirty/ugly in c#?
14
votes
3answers
6k views
How to create a std::ofstream to a temp file?
Okay, mkstemp is the preferred way to create a temp file in POSIX.
But it opens the file and returns an int, which is a file descriptor. From that I can only create a FILE*, but not an ...
14
votes
5answers
6k views
What is the most elegant way to read a text file with c++?
I'd like to read whole content of a text file to a std::string object with c++.
With Python, I can write:
text = open("text.txt", "rt").read()
It is very simple and elegance. I hate ugly stuff, ...
14
votes
8answers
4k views
Why don't the std::fstream classes take a std::string?
This isn't a design question, really, though it may seem like it. (Well, okay, it's kind of a design question). What I'm wondering is why the C++ std::fstream classes don't take a std::string in their ...
13
votes
5answers
655 views
Optimize C# file IO
Scenario - 150MB text file which is the exported Inbox of an old email account. Need to parse through and pull out emails from a specific user and writes these to a new, single file. I have code ...
13
votes
7answers
4k views
Find all files in directory with extension .txt with python
How can I find all files in directory with the extension .txt in python?
Thanks.
UPDATE: Thanks everyone, wide variety of examples for the next person that searches for this.
13
votes
5answers
22k views
How to write a UTF-8 file with Java?
I have some current code and the problem is its creating a 1252 codepage file, i want to force it to create a UTF-8 file
Can anyone help me with this code, as i say it currently works... but i need ...
13
votes
5answers
3k views
Reading files larger than 4GB using c++ stl
A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a decent answer as to why it ...
13
votes
8answers
7k views
How do you determine the ideal buffer size when using FileInputStream?
I have a method that creates a MessageDigest (a hash) from a file, and I need to do this to a lot of files (>= 100,000). How big should I make the buffer used to read from the files to maximize ...
12
votes
3answers
564 views
How do I copy a locked file directly from the disk and make sure that the file is intact?
The application I am writing needs to be able to copy files that are locked. We attempted to use Volume Shadow Copy, and while it was successful in copying the file, the application that had the lock ...
12
votes
4answers
12k views
How to get all files under a specific directory in MATLAB?
I need to get all those files under D:\dic and loop over them to further process individually.
Does MATLAB support this kind of operations?
It can be done in other scripts like PHP,Python...
12
votes
9answers
16k views
How do I save a String to a text file using Java?
I am a beginner Java programmer attempting to make a simple text editor. I have the text from the text field in a String variable called "text".
How can I save the contents of the "text" variable to ...
12
votes
4answers
2k views
How do I open a file that is opened in another application
I have an winforms application that loads in excel files for analysis. Currently, in order to open the excel file the file must not be already open in excel otherwise a FileIOException is thrown when ...