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)

0
votes
1answer
38 views

Changing the directory path's forward slash to backslash

I'm using the JFile chooser, and trying to import a pdf file but; if (option == JFileChooser.APPROVE_OPTION) { String fs = File.separator; String filelist = " "; filelist = " ...
-1
votes
1answer
54 views

Binary file writing

I have found an issue. I have to write binary files by using VB6 and C#. When I wrote same set of variables as mentioned below, both output differs. I can guess, the way they represent the string is ...
4
votes
5answers
64 views

How can I import a string file into a list of lists?

Basically I have a text file: -1 2 0 0 0 0 0 2 -1 -1 -2 0 0 -2 2 0 1 0 Which I want to be put into a list of lists so it looks like: ...
4
votes
1answer
52 views

xlsread() thinks my 1-line CSV has 1048576 rows

I wanted to use [~, ~, temp] = xlsread('1.csv','A:A'); to get the first column of the 1-line CSV file 1.csv. 1.csv contains just one line: ...
0
votes
1answer
56 views

Reading wrong input from file

I am trying to write a program which should read a line and store its contents in an array, so it needs to read line by line and also read different characters in a line. For example my input is 4 6 ...
-1
votes
3answers
2k views

Save a the text from a jTextArea (ie Save As) into a new .txt file

I am busy trying to make a word processor as one of my project and I need the text entered into the jTextArea to be saved as a .txt file with a name and location that the user chooses. note "fc" is ...
3
votes
4answers
6k views

In Firefox, Write to a File using Javascript?

Situation:- I have created a installation setup(local) that returns a URL eg:- ved.test.com which is mapped to an IP 11.22.33.44. Thus to make the web application accessible after installation, user ...
0
votes
2answers
33 views

Text file I/O with fstream and ifstream

#include <iostream> #include <fstream> #include <cstdlib> using namespace std; int main(int argc, char *argv[]) { ifstream is; is.open(argv[1]); ofstream outfile; ...
2
votes
3answers
54 views

ftell at a position past 2GB

On a 32-bit system, what does ftell return if the current position indicator of a file opened in binary mode is past the 2GB point? In the C99 standard, is this undefined behavior since ftell must ...
0
votes
4answers
59 views

Why will this not display?

It won't display the line of code that has the word put in it. I want it to display the line of code that contains the substring "put", case insensitive. The first and second lines should be printed ...
0
votes
0answers
13 views

Access denied of random Global Resources in Azure application

Whenever I run the web application, it is fine and the login screen shows. However, when I run the web application in the Azure emulator things go wrong. It cannot execute the operation "CreateFile" ...
1
vote
1answer
399 views

powershell behavior when host file handle is closed

I'm looking for an explanation (preferably documentation) of the following madness. Say I have the following simple Perl script: use strict; use warnings; my $output = "C:\\Temp\\aout.txt"; my ...
0
votes
3answers
349 views

reading a text file in R line by line

I would like to read a text file in R, line by line, using a for loop and with the length of the file. The problem is that it only prints character(0). This is the code: fileName="up_down.txt" ...
1
vote
2answers
4k views

Reading the whole text file into a char array in C

I want to read the contents of a text file into a char array in C. Newlines must be kept. How do I accomplish this? I've found some C++ solutions on the web, but no C only solution. Thanks! Yvan ...
1
vote
3answers
9k views

PostgreSQL: export resulting data from SQL query to Excel/CSV

I need to export the resulting data from a query in PostgreSQL to Excel/CSV. I use PostgreSQL 8.2.11. SQL error: ERROR: relative path not allowed for COPY to file In statement: COPY (select ...
12
votes
9answers
27k 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?
0
votes
2answers
2k views

Writing String Data to a file (Overwrite if already exists and create new if not exists)

I want to write the content of a string variable say $data in to a file named data.xml the folder location will vary depends upon the content of $appId variable like i want to write file in ...
1
vote
0answers
26 views

POST a file read from file system as multipart to REST service in PHP

I am trying to read a file(image file) using PHP from file system as a multipart file and POST it to a REST service. I am not sure how to do this really as I reading it from a file system. Well the ...
0
votes
0answers
21 views

read and write images in structure folder

I'm building a travel infomation. My app has about 500 images in structure folder. I don't know how to read/write by my application. I usually read and write image by id through drawable. But put 500 ...
0
votes
1answer
1k views

Error using ==> fprintf (In Matlab)

R=1; N=7; fid = fopen('x.txt', 'w'); for i=1:N; if i==1 TO=i-1; else TO=i; end if (i==1) FROM=1; else FROM=i-1; end fprintf(fid, 'R %6.0f%6.0f %6.2f ...
14
votes
3answers
1k views

JDK 1.7: “Too many open files” due to POSIX Semaphores?

I've looked through the other similar questions on SO, but they seem to be caused by other issues. First I made sure I judiciously closed all of my file handles, and then I used lsof -p <pid of ...
0
votes
0answers
19 views

Unable to see files uploaded into my servers /tmp folder but able to process them.

I have a simple form that allows users to upload forms into the server using the POST method. I am able to process this file and store it into an array using the following command : if (($handle = ...
2
votes
2answers
183 views

c, how do i detect if another process is writing to a file

I do open large files with fopen under c with a kind-of observed folder logic. I'd like to fopen (or at least to fread) the file as soon as it has been copied completely to my observed folder. How ...
2
votes
2answers
31 views

Grabbing Chunks of Data from File in Perl

I am scanning a error log for the keyword "warning." When I find it, there is a particular case of warning that will end information relevant to the warning with only a newline character. What I want ...
2
votes
1answer
25 views

IO.readlines to multidimensional array

The goal of my program is to read in a file that has a grid of numbers delimited by white space. To process this in my program I need it to be a multidimensional array. I attempted to do this by: ...
0
votes
2answers
35 views

How do I use quotation marks in fstream?

I want to output a line into a .plt file that says "one-D Hydro" with the double quotation marks and so far I have this problem. #include <cstdlib> #include <fstream> using namespace ...
0
votes
0answers
41 views

Read/Write files with UNC path - in c++

I wrote a bit of code that reads/writes stuff... I would like to add an option to read/write to UNC paths. A bit of code: if (boost::filesystem::exists (file_name)) { std::ifstream ...
-3
votes
2answers
1k views

Java - Create new file on remote location

I need to create new file and put it into remote location like http://anyip:port/file/myfile.txt Can you please help me to do this? Regards
1
vote
0answers
26 views

Read a file's content from the expression of a conditional JAVA breakpoint in Eclipse without creating variables

How do you read the content of a file from the expression of a conditional JAVA breakpoint in Eclipse? My breakpoint's condition is true when the value of my string variable contains 'earnings': ...
-7
votes
1answer
43 views

Reading a single file with Multiple Thread [closed]

I'm new to programming java threads. I need to read a single file with multiple thread to reduce the time of file reading operation in java. For example: file has 10 lines. 1st thread read 3 ...
1
vote
1answer
378 views

Unable to write or read a file in external storage - Android

I am trying to write a simple program that writes a file to external storage and reads from it. The following is a description of the problem: 1. File name = "hello_files.txt" containing text "hello ...
3
votes
4answers
1k views

Remove “Invisible” Control Characters in VB.Net

I am currently reading in a text file in VB.Net using Dim fileReader As String fileReader = My.Computer.FileSystem.ReadAllText(file) File contains several lines of text and when I read in the text ...
1
vote
2answers
87 views

How do I write to the middle of a text file while reading its contents?

First of all thanks for helping me out with moving files and for helping me in with tcl script. Small doubt i had with python code.. as below.. import os import shutil data =" set filelid [open ...
2
votes
6answers
4k views

How to create a java.io.File from a ByteArrayOutputStream?

I'm reading a bunch of files from an FTP. Then I need to unzip those files and write them to a fileshare. I don't want to write the files first and then read them back and unzip them. I want to do ...
1
vote
8answers
101 views

Python: What's a fast way to read and split a file?

I need to read a file and split it into lines, and also split those lines in half by tab characters, as well as getting rid of all speech marks. At the moment I have a working function. However, it is ...
2
votes
2answers
4k views

Read a txt file fscanf vs. fread vs. textscan

I have a .txt file that has been generated from SQL-2005 (in ANSI format). I have tried textscan and fscanf. The entire txt file has only numeric data. Online resources suggest that fscanf is ...
0
votes
1answer
69 views

C# - StreamReader/StreamWriter - File used by another process

First off, I made sure that I dispose and close everything (both reader and writer) properly. The method I'm doing is that I'm using the using statement; and before this, I manually used the dispose ...
2
votes
2answers
50 views

Best data structure for a file with unknown variable types

My program reads in a file that is a list of program names followed by a comma and list of command line arguments for that program. I want to store each line separately so that I can sort them and ...
0
votes
3answers
64 views

comma separated stream into struct

I have a structure with an int and two strings. When reading in the file it is comma seperated for the first two values and the last value is terminated by a newline. The third argument could be empty ...
1
vote
2answers
58 views

Trouble reading from file using getline() c++

This code always prints the last line of the file. I expected it to print all the text, one line at a time, from the file. Any idea why it doesn't work? string filename; cout << "File to read: ...
1
vote
1answer
47 views

Boost asio for writing to files

I would like to write files asynchronously. I have a class with a function that takes in a vector, and the file name, and sends it to the file. This function can be called a few thousands of time, ...
0
votes
2answers
35 views

How to read a large file using Nio2

I am trying to read a text file which has around 3 lakh lines as of now. How am I reading? I am reading using the java.io.BufferedReader Here is a small code snippet which represents my approach. ...
0
votes
4answers
102 views

C Programming File I/O

I'm trying to read from a text file and write to one, but every time I execute my code, nothing happens with the text files. By "nothing happens", I mean that the program won't read my input file and ...
15
votes
5answers
7k views

Why java.io.File doesn't have a close() method?

While java.io.RandomAccessFile does have a close() method java.io.File doesn't. Why is that? Is the file closed automatically on finalization or something? Thanks!
0
votes
0answers
282 views

Why am I getting “ERR:3219: Operation is not allowed in this context”? (C++, Windows)

I am seeing an error in my code, and I can't figure out what to do about it. It's written in C++, which I am not a master of. So, I'm hoping you guys can help point me in the right direction. The ...
4
votes
7answers
8k views

Most efficient way to check if a file is empty in Java on Windows

I am trying to check if a log file is empty (meaning no errors) or not, in Java, on Windows. I have tried using 2 methods so far. Method 1 (Failure) FileInputStream fis = new FileInputStream(new ...
-1
votes
2answers
44 views

How to read a text file line by line in verilog?

I have a SREC file which is a simple text file and I want to read it line by line in verilog. How can I do that?
0
votes
1answer
41 views

File.delete throws Errno:EACCESS Permission Denied in ruby

The following code that is meant to delete lines that match a regular expression fails def delete_entry(name) puts "Deleting #{name}.." if $DEBUG begin File.open("#{@file_name}.tmp", ...
2
votes
3answers
70 views

UIImage setImage is very, very slow

I'm trying to load an image from a local URL using the following: UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:fileURL]]; [self.imageView setImage:image]; NSLog(@"imageView ...
0
votes
3answers
58 views

How can the current file be overwritten?

For the following code: fstream file("file.txt", ios::in): //some code //"file" changes here file.close(); file.clear(); file.open("file.txt", ios::out | ios::trunc); how can the last three lines ...

1 2 3 4 5 161