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

Launch a pdf file from java

I am trying to open a pdf file from the following code. try { String currentDir = System.getProperty("user.dir"); currentDir = currentDir+"/Report.pdf"; ...
1
vote
1answer
40 views

File output stops after outputting 8192 characters

I'm just trying out some file handling stuff. I have an array with max size of about 100 000 characters, and I've got it to fill up to about 11000 characters. I attempted on outputting the array ...
-1
votes
1answer
97 views

ReadStr() and WriteStr() in Delphi

I have some code that uses ReadStr and WriteStr for what I presume is writing a string to a binary file. The explanation for WriteStr in the documentation states that it will write raw data in the ...
0
votes
0answers
36 views

“Debug assertion failed" error dd\vctools\crt_bld\self_x86\crt\src\fclose.c can't open file 2nd time

I have a GUI interface which reads from and to a file when ever a button is pressed. On the first press of the button the code works perfect. But when ever I press the 2nd time this button the program ...
0
votes
3answers
36 views

File is locked, not letting me copy it

I have a file that I want to backup, I don't have anything "touching" the file that I "know" of. But I get the message: "The process cannot access the file ...
0
votes
1answer
27 views

Save JTable content to TextFile and read it

I have a problem with my jTable. I read a lot of stuff on the net but I still can't solve my problem. When I click on jButton1, this procedure is called (Saves to text file the jtable) public ...
0
votes
2answers
28 views

iOS : NSFileManager copyItemAtPath is memory intensive

I have an app that must copy a bunch of files from disk to disk. Those files are HD raw images so they are big. I wasn't suspecting that the NSFileManager copyItemAtPath: method would actually load ...
4
votes
0answers
33 views

assertion error with np.load following numpy.savez

I have 5 numpy arrays a,b,c,d and e all defined as: array([1, 2, 3, 4, 5, 6, 7, 8, 9]) I am saving these arrays like so: np.savez_compressed('tmp/test',a=a,b=b,c=c,d=d,e=e) This results in a ...
0
votes
0answers
4 views

How to save a file from gridfs in mongoDB

I want to save an image in mongoDB in the HDD. I am on windows, and this doesn't work.. img = fs.get(ObjectId('...')) with open('img.jpeg', 'wb') as imgf: imgf.write(img.read()) What am i ...
0
votes
0answers
26 views

Highlight(select) file in windows explorer using .Net

I have a list of file names. These files are inside a single folder. Is it possible using .Net to select/highlight the files in windows explorer? I would like to simulate the selection as shown in ...
1
vote
1answer
21 views

Eclipse: How to overwrite resources in src folder

I have a program that alters a file in my src/resources folder, but the file that gets selected is in the bin/resources directory. How can I tell Eclipse to modify the file in the src/ directory. I ...
0
votes
3answers
38 views

Retrieving a Single File and the Behavior of Directory.GetFiles C#

public int RunStageData(string rootDirectory, stringdataFolder) { string[] files = new string[] { }; files = Directory.GetFiles(rootDirectory + dataFolder); string[] tableOrder = new ...
0
votes
1answer
20 views

Matlab: datevec and CSV file

I'm reading a CSV file that looks like the following: date time price volume exchange 20070813 10:26:38 7.626 3 E 20070925 12:58:24 7.535 69 E 20071218 ...
1
vote
0answers
44 views

is something wrong with how I read tgz files in Node.js? Benchmark says it is slow :(

benchmark of my function: mark@ichikawa:~/inbox/D3/read_logs$ time python countbytes.py bytes: 277464 real 0m0.037s user 0m0.036s sys 0m0.000s mark@ichikawa:~/inbox/D3/read_logs$ time node ...
0
votes
1answer
24 views

Modify XML File in C++

I want to modify an XML file which has a very complicated structure something like <root> <a></a> <b></b> <c></c> <d> <e>text</e> ...
0
votes
3answers
64 views

Reading entire file to QString

I'm trying to read all the files in a folder, store them in fileList via entryList() and then, for each file in that folder, open it and read its contents into a QString. I think this should be easy, ...
1
vote
1answer
68 views

File read problems in C

I'm having some random glitches occur when reading and writing to a file in C. Typically, the algorithms work correctly, but occasionally I'll get a hiccup to where the loop I'm using stops working. ...
0
votes
5answers
69 views

Java: Blank File on writing

I am trying to write to a file in Java using the following function: public void writeTextFile(String filename, double s){ FileWriter output=null; try{ output= new FileWriter(filename); ...
5
votes
5answers
107 views

Which is better - using String or File as parameter type for methods that take filenames [closed]

I have a couple of methods which take filenames as parameters. My doubt is that what is better way to declare the parameters of these methods. Should the parameter be of type String void ...
0
votes
3answers
76 views

Java File IO vs Local database

I am working on a project that involves parsing through a LARGE amount of data rapidly. Currently this data is on disk and broken down into a directory hierarchy: (Folder: DataSource) -> (Files: ...
1
vote
2answers
96 views

Array of structs questions - how to determine sizeof() manually - Delphi?

I'm doing a bit of a file-format converting, and looking at some Delphi code I was able to get my hands on to decode the original format. It's a binary file, and I have the function for how the ...
1
vote
2answers
83 views

Is my logging-module thread safe?

Guys, I am a beginner in threading and logging. Btw, I am not a native English speaker, so pardon me if there is any mistake in my English. I have created a multiple-thread software, where each ...
0
votes
1answer
12 views

How to block until all file descriptors are ready? Use select()/poll()/epoll()?

I am in the situation where I would like a C program to block on a set of file descriptors until all files are ready. This differs from the traditional select(), poll(), and epoll() system calls that ...
0
votes
0answers
13 views

Corrupted file Paypal_base file

I'm so depressed for days seeking answer for the following problem: My website was working fine (It contains paypal_base.dll) files my laptop battery dropped out and when I re-started my application ...
0
votes
1answer
19 views

How to read functions from a file? [for factor graph in Bayesian networks]

I am trying to implement a factor graph. I would like to read the factor functions from a sperate file. Unfortunately when I read a function from a file just for test I get the error: ...
1
vote
1answer
37 views

How do I transfer effectively huge number of files from my python clients to server and back?

I have around 100 clients (Windows machines mostly with one or two Macs/Ubuntas) and I need to sync huge number of files between clients by means of central server which does almost no work on synced ...
0
votes
2answers
63 views

Read a txt file, and memorize into int or long in C

I'm not a C genius. So..first of all sorry for my stupid question. I have a .txt file or .dta (whatever) and I want to read it in C. I would like to take the numbers of the txt, formatted as two ...
1
vote
2answers
39 views

Are open(file, “wt” or “rt”) different objects?

When you do: file = open("my file","wt") and file = open("my file" , "rt") These both create file objects that we use file methods on. But are they creating different file objects? And if they ...
0
votes
1answer
29 views

Transactional File Saving in standard C++

Is it possible to implement transactional file saving in standard C++ without using system specific API calls like CopyFile, ReplaceFile, CreateFile etc. Currently I am doing it as follows (using ...
-1
votes
3answers
60 views

How to delete only the content of file in python

I have a temporary file with some content and a python script generating some output to this file. I want this to repeat N times, so I need to reuse that file (actually array of files). I'm deleting ...
-1
votes
2answers
42 views

Why do I get an error saying eof is not a class type of fstream?

I have printed out the array in the main just to test this method works and it does. But when I try to do the same thing in a different class I get errors. #include <iostream> #include ...
1
vote
2answers
42 views

Read a large file in android (~15MB) from external memory in android

I want to load a model file that will be present in the user's external storage. Size of the model file can be upto 20MB or so. It contains x,y,z info separated by '\n'. When i try to load a small ...
2
votes
1answer
40 views

Difference between loading file and Accessing file using fileReader?

This looks like a very basic question but still want to ask this as I am not very clear with this concept. I have property file to be accessed from my Java code. What is the proper procedure to do ...
0
votes
3answers
42 views

Reading and writing of two digit value to file in C

I'm writing a business application in C in which I'm keeping track of a timer by writing the value to a temporary file. The counter starts at 96, and counts backwards all the way to 0. The logic works ...
2
votes
0answers
57 views

Adding lines to an open file?

I have an std::ifstream object: std::ifstream file(file_path); I read lines from it: std::getline(file, line); Is it legal to add lines to this file from another place while the stream is open? ...
-3
votes
1answer
96 views

How to remove duplicate lines from text file having more than 200K rows and its size is 1 GB?

Presently i am using following code......its working for only 300 lines of text file..and it will take 2minits to execute this program code... but my text file is having more than 200k of rows(lines), ...
0
votes
3answers
46 views

Writing to multiple files without duplicating code Java

I have this code to write to a file when I add a user to an array list. The code works fine: public void writeToFile(String content) { try { File file = new ...
0
votes
0answers
29 views

Delta copy using Visual Basic

I'm using Visual Basic to create a program and one part of the program is to copy huge files from a remote server that is connected slowly. So I want to transfer as littleas possible. I thought to ...
1
vote
1answer
37 views

Python messing up my windows folder icon

I'm using an icon color code to organise data in some folders. Visually, you instantly know which type of data the folder is containing. Those folders are being fed by a software. Up until now I was ...
-3
votes
1answer
38 views

Working with multiple files in C#

I am facing special problem. I have a button, which when clicked, will cause click event to open file dialog to choose file. Name of this file (SafeFileName) will be displayed in combo box. Then I ...
0
votes
4answers
73 views

Confusion about file I/O (C)

fwrite(&studentg,sizeof(studentg),1,p); while(!feof(p)) { printf("flag"); fread(&studentg,sizeof(studentg),1,p); ...
-4
votes
0answers
35 views

I am unable to execute a runnable jar by double clicking [duplicate]

I created a runnable jar through eclipse IDE. My code inside the jar has to do some calculations and it will print the output on the console using System.out.println("...."). The Problem is if I ...
1
vote
1answer
33 views

What is the difference between using IOUtils and ImageIO for writing an image file

I have a tiff image stored as Base64 encoded String in a file. My aim is to create a tiff file out of it. This is what I am doing: String base64encodedTiff = IOUtils.toString(new ...
4
votes
1answer
48 views

fputs returns -1 after reading to the end of the file

I'm having some problems with file write failures on Windows. I simplified it down to this example: FILE* f = fopen("test.out", "r+b"); fseek(f, -1, SEEK_END); // one byte before the end printf("read ...
2
votes
4answers
100 views

C: Content searching in file

In the code below, I am doing following things: Get a file using fp and in that file search for a string written in double quotes Write the remaining file in another file named "NewData.txt" Repeat ...
0
votes
2answers
31 views

File.Move locks file in destination folder?

I use File.Move to move large files around 2GB from a directory to another directory.The desitnation folder is monitored and if there is any new file, it will be uploaded to CDN. But we experienced ...
0
votes
1answer
35 views

Generate excel file using java with different column width

I am doing a java application (J2SE) which I have to generate a excel document (.xls). I did generate the file but I am not able to change the cell width dynamically according to the content which is ...
0
votes
2answers
32 views

I can open picture from local, but when I visit from website there is always present contain some errors

I can locally visit my picture, but when I want my visit from my django server there is always error. the source code: from django.http.response import HttpResponse import mimetypes fd = ...
1
vote
2answers
58 views

Setting properties file using java

I have a Swing Frame with some text-fields which displays the current values in the Properties file. Once I modify these properties in the text-field it should be saved back to the properties file. ...
0
votes
2answers
48 views

Reading from file in Linux

I have to read from file and assign values to variables. Then I have to save them in another file. I know how to do the second and third part but I don't know how to read from file. The sample file ...

1 2 3 4 5 166