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.
2
votes
3answers
102 views
Proper, efficient file reading
I'd like to read and process (e.g. print) entries from the first row of a CSV file one at a time. I assume Unix-style \n newlines, that no entry is longer than 255 chars and (for now) that there's a ...
-3
votes
3answers
80 views
Python read() function returns empty string [closed]
If I type this in Python:
open("file","r").read()
sometimes it returns the exact content of the file as a string, some other times it returns an empty string (even if the file is not empty).
Can ...
0
votes
2answers
78 views
How to add multiple lines in text file
I am trying to write a program which can display the contents of the file then append the content dynamically by user to a text file in C.
Below is the code, but somehow it is working for single line ...
1
vote
3answers
70 views
how to read a file line by line and append some string each line?
I want to open a file and then read it line by line. In some lines I want to append a string to exactly this line. Is this possible?
I have a code for opening the file and reading it like the ...
2
votes
1answer
50 views
How to use fscanf to read a line to parse into variables?
I'm trying to read a text file built with the following format in every line, for example:
a/a1.txt
a/b/b1.txt
a/b/c/d/f/d1.txt
Using fscanf to read a line from file, how can you automatically ...
0
votes
1answer
80 views
C++ Simple Multicolumn File Read
I am trying to read a file with multiple columns to output all results with an income of over $100,000 and a GPA of less than or equal to 2.3. I'm not able to figure out which approach is correct. ...
1
vote
2answers
29 views
PERL POE ReadWrite Wheel File IO Example?
I'm having trouble finding an example of how to create and write to a file using a POE Wheel or whatever async process. I want to be able to write large files in a non blocking way. I'm looking for ...
0
votes
5answers
73 views
Reading comparing and modifying big file using java
I have one File
base.txt
5071111111
5071111112
5071111113
5071111114
..... around 15 lakh numbers
and another file
status.txt
5071111112,sended
5071111113,failed
.....
Actual Scenario is, I ...
1
vote
2answers
54 views
Can we pass a path string with white-spaces in it as argument to fopen()?
I'm using fopen() and I need to open a file where I pass a path with white-space in it as argument. Here is my code:
FILE * pFile;
pFile = fopen ("\this folder\myfile.txt","w");
Will that work as ...
0
votes
1answer
63 views
Load text file function creates a duplicate - C++
im trying to take input from a text file but there is a duplicate on the very end when i load it in.
**
Here is what the text file contains:
**
Weapon Name: Katana.
Damage: 20.
Weight: 6.
...
2
votes
2answers
53 views
Permission denied when creating new file on external storage
I need to copy a file from the assets to the external storage. Here is my code:
File f = new File(Environment.getExternalStorageDirectory() + File.separator
+ "MyApp" + File.separator ...
-1
votes
4answers
62 views
Reading/writing java.util.Date to/from String
I have a need to save a java.util.Date off as a string, and then read it back from that string at a later point in time. I do not want to serialize the object to a file and read it out of the file.
I ...
0
votes
1answer
61 views
Exception when moving files
I'm assuming that this has to do with my limited knowledge of how the FileVisitor works and parses the directories. What I'm trying to do is to move the contents of a directory into another directory. ...
0
votes
0answers
19 views
Possible to store lists of objects in a java.util.prefs.Preferences?
In java.util.prefs.Preferences I see a bunch of getter methods, such as getDouble, getBoolean, etc., but nothing like a getObject.
I'd like to be able to store a List<Widget> in a Preferences ...
0
votes
1answer
56 views
Loading in numbers from a file containing whitespace to a 2d integer array [closed]
I have a file of numbers, laid out in a 20x20 grid (there exists a line break every line). I'm trying to figure out how I could load this into a 2d array of ints in plain C?
Here's the grid
...
0
votes
1answer
20 views
How to access to numbers from *.txt file in matlab?
I have a data.txt file like:
123 124 125 126
I want to compare these number against num
My code is like this
data= textread('data.txt','%d');
num = 125;
if num == data
b = 1;
...
0
votes
1answer
64 views
How do I load variables from a file back into Scala?
I have variables in scala that have their values written to an external file in this format:
1
2
0
0.5
0.62
This is my code that puts them in the file called "myVars.txt":
val pw = new ...
-1
votes
3answers
34 views
Not getting desired output for cin.getline(),
I have just started c++ today and I have looked through many feeds on this topic. While searching I found a function called ignore which somewhat helped. My initial problem was an input being skipped ...
-1
votes
1answer
41 views
creating a struct for file/directory tree [closed]
how would one go about creating a struct for a file/directory tree. The c program gets a txt file input with shell scripts of the paths of each txt file. for example
a\a1.txt
a\m\m1.txt
how would ...
0
votes
3answers
67 views
Can't make atoi take in a string (string vs. C-string?)
I have read a line from a file and I am trying to convert it to an int. For some reason atoi() (convert string to integer) won't accept a std::string as an argument (possibly some issue with strings ...
0
votes
1answer
37 views
How to read multiple expressions from a file?
I have the following code
int main()
{
Expression* expression;
char paren, comma;
string program;
freopen("input", "r", stdin);
while (true)
{
cout << "Enter ...
-1
votes
1answer
70 views
How do I read a CSV file?
I have problems reading a CSV file with two columns separated by "\tab".
My code is:
require 'csv'
require 'rubygems'
# Globals
INFINITY = 1.0/0
if __FILE__ == $0
# Locals
data = []
fn = ''
...
1
vote
2answers
63 views
C++ : Read/Write Binary data to file when data is complex
How would I write/read data to a file in binary, if I also have to define how to save my data?
I'm attempting to save some simple data structures out to a file in binary.
For example, I have a ...
0
votes
1answer
71 views
Access denied attempting to open a file on a shared folder
I'm working on an application which has an input folder to receive some files to process. Unfortunately, our costumer has choosen UNIX as his operational system to run his main software, and he has ...
3
votes
1answer
41 views
python script keeps using 120% CPU
I'm having an issue with my websocket script. Over time it consumes more and more CPU. One remedy I've discovered is to clear the associated logfile. This resolves the problem for a little while, but ...
0
votes
3answers
32 views
'try with resource' feature for File class
I have one scenario where I am trying to implement with the Java 7 'try with resource' feature.
My finally block contains an object of BufferedWriter and File, which I want to close using 'try with ...
1
vote
1answer
56 views
Reading from file, using Scheme
I'm trying to read from a file using scheme, and to put it's content into a list.
The problem is how to remove the question mark, numbers, and just keeping the words. Should I use a loop to check ...
1
vote
2answers
50 views
passing string to file open function in python
I have a user input and I want to pass it as the file name parameter of the open function. This is what I have tried:
filename = input("Enter the name of the file of grades: ")
file = open(filename, ...
3
votes
2answers
78 views
C++ Store a Map Pair with data from a text file
I have a text file that is storing a baseball player id and that players rbi (runs batted in) totals. The ids are all four digits and the rbis range from 60 to 110. It looks like this.
5554 102 87 ...
0
votes
3answers
45 views
Opening files in python
I am getting a weird error when I try to open a file in my python program even though they are in the same directory. Here is my code:
def main():
#filename = input("Enter the name of the file of ...
0
votes
1answer
37 views
creating files with IF logic inbeded [closed]
Actually two questions:
The main question:
I hope it isn't true that you can't have simple logic in writing out a file!!!
I have a cursor to load a dynamic list on the screen normally invoked by ...
0
votes
1answer
75 views
Displaying information from an external file in C
How do I read in an external file and then either print the whole text or selected lines?
FILE *fp;
fp=fopen("c:\\students.txt", "r");
I understand that reads the file but after that I am lost. ...
0
votes
3answers
83 views
JTextArea Does Not Display File Contents On New Lines
I'm having an issue using a JTextArea within a scrollpane. I can read from a textfile, but the contents are all showing up on one line. I have tried various methods using append and trying to break ...
0
votes
1answer
57 views
Problems with php File I/O and ajax
I'm trying to polling with ajax and php for an app Im writing. The php essentially receives an stringified object to put into a file, that can be read later. I have the writing to objects working just ...
-1
votes
2answers
54 views
writeToFile:atomically: not saving new plist data
I am using writeToFile:atomically: to update the value of a key in my plist by 1 every time the app is launched. I put this code in viewDidLoad, which reads the string value of the key, gets the ...
-3
votes
1answer
57 views
My first project: Editing an .img file, guidance wanted [closed]
Note: The only programming experience i have can be found here(cs50.tv).
I know some deal about c, and i have visual studio express 2012 running. I want to dive into making stuff and currently i am ...
0
votes
2answers
63 views
Why is the fgets function deprecated?
From The GNU C Programming Tutorial:
The fgets ("file get string") function is similar to the gets
function. This function is deprecated -- that means it is obsolete
and it is strongly ...
0
votes
2answers
48 views
getSystemResourceAsStream unable to find resource
I have a requirement to read a XML file from file system.
The code that read the XML is in a jar file and I cannot modify that code
ClassLoader.getSystemResourceAsStream('Config.xml');
I tried ...
0
votes
2answers
35 views
Java object serialization issue while reading object
I had serialized several Data and java.lang.Integer objects but while reading Data object using stream Data objects value are not correctly read while in case of java.lang.Integer objects values read ...
-1
votes
2answers
62 views
Combine two .txt files (output into one file) [closed]
How to go about writing code that combines two text files that are on my laptop. Join them together for a single file output. Are the files meant to be opened first in 'r' mode? with combining the ...
-1
votes
2answers
30 views
Confusion about different file modes
If I open a (say) binary file, and I want to append the end of it both of the following ways seem to work for me
fileVar = fopen("FileName", "w+b");
and
fileVar = fopen("FileName", "r+b");
I ...
0
votes
2answers
56 views
How to write file if parent folder dosen't exists?
I need to write file to the following path:
fs.writeFile('/folder1/folder2/file.txt', 'content', function () {
});
But '/folder1/folder2' path may not exists. So I get the following error:
...
0
votes
1answer
29 views
Clear contents of file
I am trying to remove the contents text file for iOS.
Alternatively, I could delete the file then re-create it right after with no contents.
For this solution, I know I can delete the file using ...
1
vote
1answer
44 views
How do Bash local file descriptors work?
I have looked but can't find any Bash guide that describes the details for how the following file descriptor syntax works:
while read line <&3; do
echo $line
done 3<file.txt
Is this a ...
0
votes
2answers
88 views
Verilog accessing memory address
I'm working on a project on the Nexys 3 FPGA, written in Verilog on Xilinx, that requires some file input and output (to the computer that just programmed the FPGA, preferably.) Using the program ...
0
votes
2answers
61 views
Java file IO truncated while reading large files using BufferedInputStream
I have a function in which I am only given a BufferedInputStream and no other information about the file to be read. I unfortunately cannot alter the method definition as it is called by code I don't ...
0
votes
2answers
45 views
Trouble with dynamic input program in C
I am having debugging my program and I cannot seem to find any answers. My program takes in a file, copies the words to a dynamic array and keeps a word count for multiples.
Problem 1) For what I ...
0
votes
4answers
62 views
Inputting string and intergers from a text file into variable
Hey is it possible to have a text file which its contents are:
Weapon Name: Katana
Damage: 20
Weight: 6
Is it possible to assign these bits of information into member variables of a weapons class?.
...
-2
votes
2answers
54 views
Infinite for loop with 2d array [closed]
I'm having a problem fixing this infinite loop.
I've done some tests so I'm pretty sure the loop isn't when reading the file.
Right after "printReportHeading();" is a for loop. I am pretty sure that ...
0
votes
0answers
21 views
Creating/Reading Files on Maven Tomcat Server on Heroku
I have a server that creates xml files in a the resource folder when given a query from a servlet.
I have searched around on how I would be able to create a file on the server at runtime but to no ...





