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
24 views

fgetc omit characters and then assign integer

I've a file data.dat HI5 LO2 from which I want to read 5 and 2, and store them as uint16s. I've written #include <stdio.h> int main() { unsigned short int high; FILE *pFile; ...
-6
votes
3answers
33 views

How to display content of txt file?(with the ability to edit) [closed]

How to display content of txt file? I store file in database. I need display their content on website(something like form field?). I need to be able to edit it. This is example path to file: ...
1
vote
0answers
30 views

Fast way of detecting directory changes [duplicate]

Currently I'm comparing modification dates with some data stored in the DB, but it's still slow because I'm forced to do it for all files (scan entire dir structure): DIR1 file1 file2 DIR2 ...
0
votes
0answers
5 views

Linux and Opencloud Rhino server showing java.security.AccessControlException: access denied

I am trying a simple File io operation through java code in an application server called Rhino TAS by opencloud , My imported files are import java.io.BufferedReader; import ...
0
votes
3answers
33 views

How to get notified if a file was modified outside of my program?

A portion of my program has to keep track of a group of files, including their paths and hash codes in the memory. Problem is, a user might like to edit the file using an external program at any ...
0
votes
1answer
14 views

BioPerl with clustalw - outputting file

I have a perl script to automate many multiple alignments (I'm making the script first with only one file and one multiple alignment - big one though. I can then modify for multiple files) and I want ...
1
vote
3answers
80 views

Read from a file that is continuously being updated

I am writing some C code to process some data in a file, but I just learned that the file is going to be constantly added to (about 1 time/second, maybe faster). So I'm wondering how do I keep ...
1
vote
0answers
7 views

send zip file using ksoap2

I'm trying to send a zip file using ksoap2 as client... File is arriving but corrupted, I think is something in my code when I encode it in Base64 (I'm using commons code)... WS FileInputStream fis ...
0
votes
0answers
8 views

Solution Architecture for line matching, file editing and result gathering

The desired output A text file like so: 2013-05-25 Recommendations coverage : x% Products viewed with recommendations : y 2013-05-24 Recommendations coverage : x% Products viewed with ...
2
votes
1answer
58 views

How to check if file opened?

I wrote program and need my own file watcher (loop that checks if file can be opened). Something like this: while (loadedFiles.Count > 0 || isNeedReRead) { Thread.Sleep(1000); if ...
3
votes
2answers
79 views

How do we activate (on demand) an object that is a property of another object?

I am implementing an object TTextFile that is a framework for using the low level pascal file function with the OO paradigm. I want to add to developers the option to use it as a TStringList when ...
0
votes
2answers
30 views

Adding an item to a JList remove all other items

I need some help about adding items to JList. I work on some "library" kind of project. And I need to add readers to already existing JList. But when I try to add it, JList just resets, removes all ...
0
votes
1answer
41 views

Matlab: reading rows of different formats from csv file

I'm trying to read a csv file that contains data in format: 02/01/2012 03/01/2012 04/01/2012 05/01/2012 06/01/2012 09/01/2012 10/01/2012 1w 0.652 0.626 0.606 0.584 0.564 0.546 0.53 ...
0
votes
1answer
42 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
vote
2answers
70 views

Binary file writing the same data format in VB6 and C#

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
71 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
67 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 ...
0
votes
2answers
35 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; ...
0
votes
4answers
62 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 ...
2
votes
3answers
60 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
0answers
24 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
0answers
29 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
23 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
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
33 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 ...
1
vote
1answer
33 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
48 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
8answers
102 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 ...
0
votes
1answer
80 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 ...
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
60 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
49 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, ...
2
votes
2answers
52 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
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. ...
2
votes
3answers
71 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
1answer
45 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", ...
0
votes
4answers
103 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 ...
1
vote
1answer
35 views

Error catching and File IO

I have an assignment where I need to write a while loop code block that contains a try­catch statement. The try block retrieves each line from an input file, and invokes an isValid method I created to ...
-4
votes
0answers
42 views

C++ Database - unable to close app after reading from file [closed]

I've got something like this void data_base::read_base() { fstream file; file.open("base.dat", ios::in); if(file.good()==true) { char data_row[50]; int i=1; ...
2
votes
4answers
71 views

How do I remove lines of data in the middle of a text file with Ruby

I know how to write to a file, and read from a file, but I don't know how to modify a file besides reading the entire file into memory, manipulating it, and rewriting the entire file. For large files ...
0
votes
1answer
23 views

why two different owner for posix_getpwuid(fileowner($file)) within same directory, what does it mean?

I have a shared virtual Linux hosting with a hosting company and I know to use only CPANEL and I dont know to use CLI. Recent migration to PHP 5.2 to PHP 5.3.2 by host is throwing permission denied ...
-2
votes
3answers
32 views

Load from file cannot be referenced from a static content

I don't know what's wrong with my main class. I dont know how to change it to fix it. Computer says: load from file cannot be referenced from static context. If I try to change it, my main class is ...
0
votes
1answer
66 views

creating Akka actor hierarchies lazily

I want to create actors that can serve resources from the file system. Ideally [1] I'd like to have one actor for each directory and each file. But I don't want to create the whole actor tree ...
1
vote
1answer
34 views

C#: Json validation from user input

I need to validate a json file from server side, Im using asp.net mvc with c#, so I have this method in my controller public ActionResult Validate(HttpPostedFileBase jsonFile) { bool ...
0
votes
2answers
29 views

Multiple files argument to main function

I want to process multiple text files ( eg. compare 2 files) and pass the files as argument to the main function. How do I do that ? How to I pass multiple files arguments from the command line? ...
-1
votes
2answers
55 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
2answers
48 views

nextLine ignored in Java when asking for input

Below you will see some code that I am having trouble with. The basic idea is a simple copy of one existing text file to a new one, but if the new one exists, you are given three options. The other ...

1 2 3 4 5 161