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.
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 ...
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 ...
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.
120
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"); // ...
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, ...
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 ...
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 ...
64
votes
6answers
51k 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?
21
votes
8answers
34k views
How can I lock a file using java (if possible)
I have a java process that opens a file using a FileReader. How can I prevent another (java) process to open this file, or at least make that second process know that the file is already opened? Does ...
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 ...
16
votes
4answers
9k views
Getting a FILE* from a std::fstream
Is there a (cross-platform) way to get a C FILE* handle from a C++ std::fstream ?
The reason I ask is because my C++ library accepts fstreams and in one particular function I'd like to use a C ...
24
votes
7answers
23k 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. ...
78
votes
12answers
111k views
20
votes
12answers
34k views
Validate image from file in C#
I'm loading an image from a file, and I want to know how to validate the image before it is fully read from the file.
string filePath = "image.jpg";
Image newImage = Image.FromFile(filePath);
The ...
45
votes
8answers
129k 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 ...
101
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 ...
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 ...
17
votes
10answers
29k views
File Upload with Java (with progress bar)
I'm extremely new to Java, and have mostly just been teaching myself as I go, so I've started building an applet. I'd like to make one that can select a file from the local disk and upload it as a ...
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?
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 ...
46
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 ...
11
votes
2answers
46k views
Download/Stream file from URL - asp.net
I need to stream a file which will result in save as prompt in the browser.
The issue is, the directory that the file is located is virtually mapped, so I am unable to use Server.MapPath to determine ...
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 ...
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 ...
8
votes
9answers
5k views
Delphi 2010: How to save a whole record to a file?
I have defined a record which has lots of fields with different types (integer, real , string, ... plus dynamic arrays in terms of "array of ...").
I want to save it as a whole to a file and then be ...
6
votes
5answers
5k views
Elegant ways to count the frequency of words in a file
What are the elegant and effective ways to count the frequency of each "english" word in a file?
2
votes
5answers
3k views
File write with [NSBundle mainBundle] fails
I am trying to take content from one file and write it into another. I am reading fine, but I am not able to write it into another file.
I have a database of words. I want to separate the words into ...
62
votes
11answers
112k 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 ...
13
votes
6answers
13k views
How to discover a File's creation time with Java?
Is there an easy way to discover a File's creation time with Java? The File class only has a method to get the "last modified" time. According to some resources I found on Google, the File class ...
11
votes
6answers
22k views
Java: Check if file is already open
I need to write a custom batch File renamer. I've got the bulk of it done except I can't figure out how to check if a file is already open. I'm just using the java.io.File package and there is a ...
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 ...
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 ...
20
votes
3answers
2k views
How can I close files that are left open after an error?
I am using
fid = fopen('fgfg.txt');
to open a file.
Sometimes an error occurs before I manage to close the file. I can't do anything with that file until I close Matlab.
How can I close a file ...
2
votes
3answers
9k views
Better approach for XML Creation in Blackberry
I am facing a problem,
I have created XML file,but I can't view it/output it.I know there is no way to output created XML file.
Can anyone please suggest what is better way of creating xml files?
1) ...
14
votes
2answers
11k views
Can I simply 'read' a file that is in use?
I am trying to use a StreamReader to read a file, but it is always in use by another process so I get this error:
The process cannot access the file
'\arfjwknasgmed17\C$\FLAG
...
11
votes
5answers
36k views
Getting the inputstream from a classpath resource (XML file)
In Java web application, Suppose if I want to get the InputStream of an XML file, which is placed in the CLASSPATH (i.e. inside the sources folder), how do I do it?
10
votes
2answers
1k views
How do I restore a file from the recycle bin using C#?
Moving files to the recycle bin and emptying the recycle bin are well documented, but how can a file be programmatically restored from the recycle bin?
-5
votes
4answers
402 views
how to read the given text file [closed]
my text file is(sample1.txt):
contig00001 length=586 numreads=4
CGGGAAATTATCcGCGCCTTCACCGCCGCCGGTTCCACCGACGAACGGATACTGCGtGaa
ggCCGCGATCCCGTCggaCGGAAAaCGCCcTGGCCCGGGAaCATACCGTTCGGGCCGCCA
...
15
votes
3answers
16k views
Reading file contents on the client-side in javascript in various browsers
I'm attempting to provide a script-only solution for reading the contents of a file on a client machine through a browser.
I have a solution that works with Firefox and Internet Explorer. It's not ...
18
votes
9answers
9k 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 ...
11
votes
8answers
26k views
In Java, how to read from a file a specific line, given the line number?
In Java, is there any method to read a particular line from a file, for example, read line 32?
9
votes
2answers
7k views
Delete a Line from a file in C Language
Hey, I want to delete certain lines in a file and insert certain lines in the same file based on whether certain parts of the line match a specified string. Is there a way of doing this without using ...
1
vote
1answer
2k views
Having troubles calling a Controller Post Method
Here's my method
[AcceptVerbs(HttpVerbs.Post)]
public void SaveImage(FormCollection formValues)
{
byte[] contents = Convert.FromBase64String(Request.Form["file"]);
...
7
votes
5answers
4k views
Read file which is in use?
I have a small problem. I have a tool which should parse a log file daily, unfortunatetly this log file is in use by the process which writes to the log and I cannot stop it.
First try was to create ...
20
votes
15answers
6k 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 question ...
12
votes
5answers
14k views
Android file chooser
I want to make a file uploader. And I hence I need a file chooser but I don't want to write this by myself. I find OI file manager and I think it suits me.
But how can I force user to install OI file ...
26
votes
4answers
36k 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...
11
votes
4answers
8k views
Difference between files writen in binary and text mode
What translation occurs when writing to a file that was opened in text mode that does not occur in binary mode? Specifically in MS Visual C.
unsigned char buffer[256];
for (int i = 0; i < 256; ...
15
votes
2answers
4k views
Is file append atomic in UNIX?
In general, what can we take for granted when we append to a file in UNIX from multiple processes? Is it possible to lose data (one process overwriting the other's changes)? Is it possible for data ...
