File I/O is input/output that involves the file system. This could include performing operations on directories and files, such as creation and deletion, reading files, and writing output to files.

learn more… | top users | synonyms (4)

168
votes
13answers
94k 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 ...
121
votes
4answers
47k 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 length; t.open("file.txt"); // ...
117
votes
6answers
75k 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 = "" ...
110
votes
8answers
103k 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 ...
103
votes
8answers
80k 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?
102
votes
14answers
69k 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 ...
97
votes
10answers
10k views

Writing a binary file in C++ very fast

I'm trying to write huge amounts of data onto my SSD(solid state drive). And by huge amounts I mean 80GB. I browsed the web for solutions, but the best I came up with was this: #include ...
78
votes
12answers
112k views

File to byte[] in Java

What is the best way to convert a java.io.File to a byte[]?
76
votes
10answers
75k 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 ...
64
votes
17answers
27k 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 ...
64
votes
6answers
52k views

How to append text to an existing file in Java

I need to append text repeatedly to an existing file in Java. How do I do that?
63
votes
11answers
113k 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 ...
63
votes
3answers
94k views

Reading binary file in Python

In Python, how do I read a binary file and loop over each byte of that file?
63
votes
5answers
22k 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 ...
57
votes
5answers
57k views

getResourceAsStream() vs FileInputStream

I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did ...
54
votes
4answers
50k views

Deleting all files in a directory with Python

I want to delete all files with the extension .bak in a directory. How can I do that in Python?
53
votes
8answers
34k 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 ...
52
votes
6answers
60k views

python open does not create file if it doesnt exist

I am using Python. What is the best way to open a file in rw if it exists, or if it does not, then create it and open it in rw? From what i read, file = open('myfile.dat', 'rw') should do this, no? ...
51
votes
10answers
142k views

Python: Write a list to a file

Is this the cleanest way to write a list to a file, since writelines() doesn't insert newline characters? file.writelines(["%s\n" % item for item in list]) It seems like there would be a standard ...
50
votes
5answers
48k 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 ...
50
votes
10answers
17k 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 ...
49
votes
5answers
23k 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 ...
49
votes
3answers
41k 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.
47
votes
7answers
79k views

Correct way to write line to file in Python

I'm used to doing print >>f, "hi there" However, it seems that print >> is getting deprecated. What is the recommended way to do the line above? Update: Regarding all those answers with ...
47
votes
15answers
17k 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 ...
47
votes
12answers
8k 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 ...
45
votes
8answers
131k views

Best way to read a text file [closed]

Please excuse my ignorance, I am new to Java, trying to learn from my mistakes as I write a simple programme. It seems there are a few different ways to read and write data using files. I am trying ...
43
votes
5answers
63k 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 ...
42
votes
8answers
16k 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 ...
41
votes
4answers
22k 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?
41
votes
2answers
11k views

Python: open multiple files using “with open”?

I want to change a couple of files at one time, iff I can write to all of them. I'm wondering if I somehow can combine the multiple open calls with the with statement: try: with open('a', 'w') as a ...
40
votes
3answers
28k views

Write lines of text to a file in R

In the R scripting language, how do I write lines of text, e.g. the following two lines Hello World to a file named "output.txt"?
35
votes
6answers
57k views

How to read a large text file line by line in java?

I need to read a large text file of around 5-6 GB line by line in java. Please advice.
34
votes
8answers
30k views

Ruby: Search file text for a pattern and replace it with a given value?

Learning Ruby. I'm looking for a script to search a file (or list of files) for a pattern and, if found, replace that pattern with a given value. Thoughts?
33
votes
8answers
7k 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 ...
33
votes
2answers
10k views

What are the Ruby File.open modes and options?

Ruby's File.open takes modes and options as arguments. Where do I find a complete list of modes and options?
31
votes
4answers
59k views

How to both Read/Write File in C#

I want to both read from and write to a file. This doesn't work. static void Main(string[] args) { StreamReader sr = new StreamReader(@"C:\words.txt"); StreamWriter ...
31
votes
5answers
17k 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, ...
31
votes
3answers
32k views

Getting path relative to the current working directory?

I'm writing a console utility to do some processing on files specified on the commandline, but I've run into a problem I can't solve through Google/SO. If a full path, including drive letter, is ...
31
votes
1answer
834 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 ...
30
votes
5answers
24k views

How do I get the directory from a file's full path?

What is the simplest way to get the directory that a file is in? I'm using this to set a working directory. string filename = "C:\MyDirectory\MyFile.bat" In this example, I should get ...
30
votes
10answers
13k 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 ...
30
votes
3answers
2k 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, ...
29
votes
1answer
16k views

Read .mat files in Python

Does anyone have successful experience reading binary Matlab .mat files in Python? (I've seen that scipy has alleged support for reading .mat files, but I'm unsuccessful with it. I installed scipy ...
29
votes
3answers
12k views

Creating temporary files in Android

What's the best way to create a temporary file in Android? Can File.createTempFile be used? The documentation is very vague about it. In particular, it's not clear when temporary files created with ...
28
votes
6answers
26k views

What’s the best way to check if a file exists in C++? (cross platform)

I have read the answers for this question but I'm wondering if there is a better way to do this using standard c++ libs? Preferably without trying to open the file at all. Edit: Thanks for the ...
28
votes
3answers
3k views

Why is three-argument open calls with autovivified filehandles a Perl best practice?

I've got two questions about the Perl open function: 1) I seem to remember from Perl Best Practices that the 3-argument version of open is better than the two argument version, e.g. open(OUT, ...
28
votes
8answers
6k views

What is the best way to slurp a file into a std::string in c++?

How to slurp a file into a std::string, i.e., read the whole file at once? Text or binary mode should be specified by the caller. The solution should be standard-compliant, portable and efficient. It ...
27
votes
4answers
27k views

How do I create directory if doesn't exist to create file?

i have a piece of code here that breaks if the directory doesn't exist System.IO.File.WriteAllText(filePath, content); is it possible to do in one line (or a few lines) to check the directory ...
27
votes
5answers
24k views

Python recursive folder read

I have a C++/Obj-C background and I am just discovering Python (been writing it for about an hour). I am writing a script to recursively read the contents of text files in a folder structure. The ...

1 2 3 4 5 161