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.
0
votes
0answers
44 views
Loop neither looping nor breaking while reading from a file
I have been having a strange issue. My loop suddenly ceases to loop and will also not break. It reads fine for the first several items and just suddenly stops.
I have the following loop to read from ...
1
vote
2answers
38 views
PHP create random tmp file and get it's full path
This is what I want to do.
$temp = tmpfile();
fwrite($temp, "writing to tempfile");
$path = full_path($temp);
full_path is not a real function. What do I need to do to get that information?
3
votes
3answers
57 views
Avoid writing code twice while maintaining proper way to code?
I'm trying to create a function getInput(prompt, number), where prompt is the text that will get printed in front of user's input (e.g. > or Choose a password:) and number is a boolean value which ...
0
votes
2answers
51 views
How to open a file in write mode which is in ROOT?
I have a file in the root directory which I want to open for editing in my QT application.
Generally we use sudo filepath to open the file with all permissions.
But i want to achieve this in my c++ ...
0
votes
3answers
55 views
retrieving JSONObject from a file
I wanted to store JSONObject in a file.
For the purpose I converted the Object to string and then stored it in a file.
The code that I used is :
String card_string = card_object.toString();
...
0
votes
2answers
57 views
To copy files in binary mode,why it doesn't work when we read to and write from a character variable? [duplicate]
The following program is intended to make a copy of one .exe application file.But just one little thing determines whether it indeed gives me a proper copy of the intended file RealPlayer.exe or gives ...
0
votes
1answer
25 views
File is a Method which is not valid in the given context
Trying to check whether a file exists inside a path but getting a build error on File.
File is a method and cannot be used in this context.
if (!File.Exists(excelFilePath)) throw new ...
2
votes
1answer
47 views
File input not looping through file
Im taking input in from a text file called Enemies.txt. But there is a problem in that it will only print out the first enemy in the file.
Here is my code:
void Enemies :: loadEnemies()
{
...
0
votes
2answers
49 views
using fwrite and double pointer to output 2D array to file
I've dynamically allocated a 2D array, accessed w/ a double pointer, like so:
float **heat;
heat = (float **)malloc(sizeof(float *)*tI); // tI == 50
int n;
for(n = 0; n < tI; n++){ // tI ...
0
votes
0answers
29 views
How to replace file-access references for a module under test
pyfakefs sounds very useful: it "was developed initially as a modest fake implementation of core Python modules to support moderately complex file system interactions, and was introduced Google-wide . ...
1
vote
1answer
43 views
Is there a method to determine if a System.IO.StreamWriter object is open?
Im trying to determine if a StreamWriter object is open or already closed in a script. If it's not closed, I can write a new line to the file. If it is closed, I need to perform other actions....
...
6
votes
1answer
88 views
How can I generate notifications that data written via a FileStream is on the disk?
I would like to read a file after I have been notified that a certain amount of data has been written to it via another thread. My intial attempt was to create a Reactive Subject in my Writer class ...
0
votes
2answers
40 views
Java check if file is empty: IOException: null
I'm trying to load a file to my ArrayList, program creates a file if it doesn't exist. I'm getting IOException: Null as at the beginning file is empty. How I can avoid that error and check if file is ...
0
votes
1answer
36 views
File download code gives error in IE, All's fine in other browsers
I wanted to write a code to download a file from some location.
String filePath = policyLocation;
File f = new File(filePath+"/"+fileName);
...
0
votes
1answer
29 views
Working with attachment in Outlook using VSTO
I'm attempting to create a VSTO plugin for Outlook 2010 that will calculate the MD5 and SHA1 of email attachments. While calculating them is not the problem if I have the file accessible, or at least ...
1
vote
1answer
39 views
How do I recursively copy a directory using vala?
I'm new to Vala, so this may be a stupid question.
According to #vala on gimpnet, it is not possible to recursively copy directories using Glib.File.copy. At the moment I am using:
Posix.system("cp ...
0
votes
1answer
57 views
Samsung file io - can write file but not read back in
For several weeks, we've been fighting an issue that's been discussed on SO before, but without a working answer in the specific case we've encountered. So after re-reading dozens of threads and ...
0
votes
0answers
32 views
Php file not retrieving data from file directly
I have a folder of images and I only want to select specific images from that folder, so I created a .txt file with the names of the files i wanted to be selected from that folder, I then made it so ...
9
votes
2answers
65 views
Leading zero in Matlab's scientific notation
In Matlab, when printing using e such as fprintf('%10.5e\n', pi/100) one will get the result to be 3.14159e-02. However, what if I want the number to have a leading zero such as 0.314159e-1? How can I ...
1
vote
1answer
63 views
file_put_contents(filepath/file) [function.file-put-contents]: failed to open stream: Permission denied
I have explored and taken few tips from related forums here but still I am not able to clear my problem so I am posting it kindly help me. Thanks to all.
I have shared linux hosting and recently they ...
-3
votes
1answer
48 views
Trying to Write Multiple Files at Once - Java
I am trying to split a dictionary file that I have into multiple dictionaries of different lengths, for example if I want take it and put it into smaller dictionaries of length 2, 3, 4, ..... n, where ...
0
votes
1answer
23 views
Overly Broad Directory.EnumerateFiles() vs Multiple File.Exists()?
I am updating a program which, among other things, checks for the existence of files within a given path. The files could be located in any one of many subdirectories off of the main path. Previously, ...
-1
votes
0answers
50 views
How can I manipulate the data in a JTable dynamically?
I am creating an application that requires me to use a JTable to display the data.
The data for the JTable is stored in a local file and updates when the user modifies a file in the cloud file ...
0
votes
1answer
70 views
how to resize a pdf file from legal format to letter format using c#`
I have pdf files exported as legal format and want to convert them to letter format (basically shrink them), each file may have 1 to 3 pages, below is the code I tried but I have these problems:
...
1
vote
0answers
25 views
Minecraft Mod to create files and folders
I'm currently creating a mod for Minecraft. It's another computer mod and I need it to store all the files and folders the user creates on the computer into the computers own personal folder. For ...
1
vote
1answer
68 views
Is there a portable way to redirect stdin to string in C++?
Is it possible in C++ to redirect stdin to string in C++?
Using freopen I can redirect stdin to file, so both scanf and cin will use a content of that file.
Using manipulations with stringstream and ...
0
votes
2answers
65 views
Reading a binary file on backwards using python
I try to read a file backwards (from end to begin). The example below does this, but I would like to ask the community - is there a more elegant solution to my question?
import os, binascii
CHUNK = ...
2
votes
1answer
50 views
Corrupted Zip Archive after Sending
I am using NanoHTTPD on the Server side and Apache DefaultHttpClient on the Client side.
I want to send a .zip File from my Server (in a Response) back to my Client.
For this Purpose i use this code ...
0
votes
2answers
77 views
Creating byte array to image using ImageIo [duplicate]
I am reading a binary file and changing some values and creating a image file from that.
Here is my code
public class Capture {
private static final String inputFile = "E:\\Capture_Mod1.BIN";
...
2
votes
3answers
95 views
What is the fastest way to read files using c++
Read files means I will read every document (doc, docx, xls, xml, txt,...) on my hard disk.
Most of my files will be about 10KB ~ 1MB, I think.
I'll read the file and filter the text if there is any ...
0
votes
0answers
67 views
File still open in java(tm) platform se binary after close
In my application there are a two files (eg. Customer and Products) both wrapped in BufferedWrite, both used in the same background thread. When task is finished both files are closed, then in the ...
1
vote
1answer
44 views
Uploading files: FileUpload.SaveAs or manually writing FileUpload.FileBytes
Using the FileUpload control, please explain the difference between the following two methods of uploading file:
1. Using the FileUpload.SaveAs() method:
fileUploadControl.SaveAs(path)
2. Writing ...
0
votes
1answer
41 views
How to get file generation datetime and updated datetime in C#
I am trying to generate files and perform write operation in a scheduled process. I need to find out the time taken to generate the files (after write operation is performed). I am little confused ...
0
votes
0answers
47 views
How to check a file is open or not in FileHelper [duplicate]
I am using FileHelper for exporting the data to csv for my C# project. I am facing an exception
"The process cannot access the file"
the reason is the file is already opened. Is there any ...
0
votes
1answer
27 views
Saving file in specific drive
I am manipulating data into a matrix (X), I am using this code:
fid=fopen('Data','w+');
fprintf(fid,'%6.3f %6.3f\n,X);
fclose(fid);
to create a file named 'Data', I want to save that file in a ...
-1
votes
1answer
54 views
My program is giving me a segmentation fault (c++)
My program reads a text file line by line to get information about a group of people who have made donations. It uses an array of structures to store the information (name, donation amount). The ...
0
votes
1answer
64 views
Writing large varchar(MAX) to file using t-sql stored procedure
I am trying to run the following commands to generate a file and populate the file with varchar(MAX) amount of data. Here is the issue, when I try to run the code it creates the files but they are ...
0
votes
0answers
35 views
Why isn't the size specifier working in my FORTRAN inquire statement?
I am trying to work with FORTRAN INQUIRE and the relatively new SIZE specifier, and getting some curious results.
My test code:
program howbig
integer :: fsize=0
logical ex
character*64 :: ...
0
votes
1answer
35 views
FORTRAN INQUIRE statement and FLEN parameter
Apparently, some versions of FORTRAN allow a parameter FLEN in the INQUIRE statement. Pretty useful thing, it will give the size of the file in question in bytes. But, AFAICT, this is pretty new. ...
2
votes
1answer
52 views
How to get threads to stop blocking each other from writing to log file on disk?
My threads have fallen behind schedule and a thread dump reveals they're all stuck in blocking IO writing log output to hard disk. My quick fix is just to reduce logging, which is easy enough to do ...
0
votes
7answers
65 views
C fopen call with variable name?
Is there ever a circumstance where the following would work? (I'm trying to pull the value of a variable and create a file based off the text stored in the array.)
#include <stdio.h>
int ...
0
votes
2answers
105 views
How to write on a specific line in a file?
I want to write some data on an already existing file. It is a file that contains about 8-10 lines of header(# comments) and then thousands of lines of data values. What i want is to keep the header ...
-2
votes
1answer
45 views
infile does not read file contents
im trying to read in the file Rooms.txt:
Room ID: 1.
Room Name: Beach East.
Room Exits: 2, 3.
Room ID: 2.
Room Name: Beach West.
Room Exits: 1.
Room ID: 3.
Room Name: Forest.
Room Exits: 1,4.
...
0
votes
2answers
69 views
Jump to end of specific line
I am trying to change my cursor position in an opened file.
fp = fopen("dirty", "a+");
fprintf(fp, "Text at end of file");
// seek to end of third line (eg.)
fprintf(fp, "Text at end of third ...
2
votes
2answers
154 views
Write an efficient python adjacency tree generation script
I am writing a script that generates a list of millions of items and then generates another list based on the first list. It fills the memory very fast and the script can not continue.
I thought it ...
0
votes
1answer
45 views
Writing result to an existing file in python
Can i know how i can write obtained result to a File in python.
For example,
Below code snippet check for state. If it pass it prints pass otherwise fail.
if generalTools.waitAppear('State2.png', ...
0
votes
1answer
36 views
java File mkdirs and createNewFile won't work
I'm trying to copy and existing directory structure (no need for the file contents themselves, 0 length dummy files will do). However mkdirs() won't create the necessary directories, causing ...
0
votes
1answer
49 views
Reading file in segments of X number of lines
I have a file with a lot of entries (10+ million), each representing a partial document that is being saved to a mongo database (based on some criteria, non-trivial).
To avoid overloading the ...
0
votes
0answers
13 views
pclzip php delayed write error
I'm using pclzip in my php code for compress a folder on the user demand.
I have a strange bug : Generated zip is not complete when i send it to the user. ( but it's complete after few seconds )
...
0
votes
2answers
45 views
Inserting values from a file to a function using c++
I am trying to take numbers from a file that each line has a number.
3
7
8
5
2
1
and insert the integers from a file to a function within my code called insert().
This is what I have:
int ...




