The file-handling tag has no wiki summary.
-1
votes
1answer
32 views
Creating a file and copying its content to other file in c language
I need a C program to copy contents of one file to another file along with the following conditions :
1.) The file from which we read data may or may not exist.
2.) The file to which the data is ...
1
vote
3answers
57 views
File Handling in Java Programming
I am a beginner in programming.
I am trying to read the first word of every line from a file, and I want to write all of the first words to another file.
I have done the following code.
import ...
0
votes
0answers
11 views
fgetss(STDIN) argument not valid stream resource
These are the lines of printed instructions for the client.
The password you keyed does not match the record
retrieved for the member number you entered.
Please answer your security ...
-2
votes
6answers
195 views
Sorting large files in better time than 0(n log n) time
I have two files:
One file stores name "mapping.txt" of 10GB:
1 "First string"
2 "Second string"
3 "Third string"
...
199000000 "199000000th string"
And the other file stores integers from ...
0
votes
1answer
13 views
Create and download word file from template in MVC
I have kept a word document (.docx) in one of the project folders which I want to use as a template.
This template contains custom header and footer lines for user. I want to facilitate user to ...
2
votes
3answers
88 views
incorrectly reading in file
If I give my program the txt file:
BB
MB
150 570 2
240 570 3
360 570 0
FB
E
T
It reads it in incorrectly and instead reads it as
BB
150 0 0
240 570 2
360 570 3
0 570 0
MB
FB
E
T
Here ...
-1
votes
1answer
27 views
Not able to print the content of a file in perl CGI
I want to print the content of a file line by line in a webpage
Here is my code which is refusing to work.
open(CNF, '<G:\automation_managment\".$n."\config.txt') or die "cant open";
my ...
0
votes
3answers
40 views
How to write to a file in WebContent directory from a class in WEB-INF/classes directory
I have a Java Class UpdateStats in WEB-INF/Classes directory of a dynamic web application.This class has a function writeLog() which writes some logs to a text file.I want this text file to be in ...
2
votes
5answers
52 views
Put comma in txt file using file handling function
here is my code
<?php
$filename = 'names.txt';
$file = fopen($filename, 'w');
fwrite($file, implode(", ", $filename));
?>
my names.txt file data is like this
saad
Alex
Ashmil
...
0
votes
1answer
33 views
Loadrunner and parameterize file upload
I have my vugen script like this: ITEMDATA,
"Name=File", "Value=C:\\testdata\\readme1.txt",
and I want to parametrrize the readme.txt part of the script with a unique filename for each vuser. How can ...
0
votes
0answers
21 views
Aborted (Core dumped) error while writing file
I could successfully write the file using code:
#include <stdio.h>
int main( )
{
int length, i = 0, wd;
int fd;
//char buffer[BUF_LEN];
FILE *fk;
//char buffer[EVENT_BUF_LEN];
...
0
votes
1answer
22 views
PHP is_file() and file_exists() doesn't return true for existing PDF and SVG files
I don't know if this is an intrinsic property of the functions or something in my PHP configuration, but for some reason when I am using is_file() and file_exists() to confirm the existence of a PDF ...
1
vote
1answer
73 views
Sending large files (~ 1GB) fails with SocketException
I'm trying to send large files using socket programming in java for a p2p file sharing application. This code is sending 200-300 mb files without any problems, but for large files around 1 gb it is ...
0
votes
3answers
71 views
Moving in text file with C#
I have a problem with C#.
I am writing code to search a text file until it finds a certain word, then the code should move three lines and read the fourth, then continue the search to find the ...
-1
votes
0answers
11 views
How big corporations like flickr, google images handle and folder their images?
I searched about this a lot and It really makes me curious that, how big corporations store their pictures ?. Is it folder based ? or picture datas that are stored in database ? or tons of folders ...
3
votes
2answers
91 views
reading big data in C++
Im using C++ to read large files with over 30000 lines and 3000 colums. (30000 x 3000) matrix. im using a 2d vector to push the read data. But i need to do this process a couple of times. Is there any ...
0
votes
0answers
22 views
How implement a basic wait for a specific file to be closed from write mode under windows?
I have a bash script run under Windows and I do want to wait until a specific file is not open for write anymore.
Does anyone know a way to implement this in bash under cygwin, without installing ...
-1
votes
2answers
63 views
FileOutputStream appending issue, where I am going wrong?
I am trying to get a 3 to 5 PDF file(from some internet source) & merging them one after another.
FYI, I dont want to use iText or any other PDF lib, because, please look at the code once
public ...
2
votes
2answers
104 views
Rename a file in Python
I’m a self-taught python newbie of a couple of days. I’ve got a basic understanding of the way python operates, but I’m really stuck with the following.
I have a list of text files which are ...
0
votes
0answers
96 views
[Can't figure out][C++] Access violation error using ofstream/fstream?
I am writing to a file, using ofstream. The writes are very rapid for one thing, file is closed and opened extremely frequently. Below is the code:
if( !(IS_ERROR(wcstombs_s( (size_t*)&out, ...
0
votes
1answer
78 views
Print each hash key and its values in new file?
I have made a hash of hashes, where all the lines of a file are sorted into a key of the "master" hash depending on the value of their 5th field.
%Tiles has n keys, where each key is a different ...
0
votes
0answers
101 views
String^ manipulation involving .txt file in visual c++ 2010
I have a windows form SearchById and i have a class UserRecord(for storing credentials such as name,etc of users)(having instance obj) defined in UserRecord.h .
Now , when I click on Done button on ...
0
votes
1answer
42 views
FprintF from linklist to file
I have added the Fprintf into the SavePacket function but it doesn't recognise pos->destination like it does withing the outpackets function, How do i addapt the code so it takes the data saved in my ...
0
votes
1answer
41 views
Trying to pass sudo password directly through STDIN
This is my program, and it doesn't seem to be working. Sometimes I thought it worked with \0 or \r instead of \n, but I guess that is because I had already executed a sudo command on the terminal ...
0
votes
3answers
39 views
PHP include a text file whilst keeping carriage returns?
I have a text file that I'm including on my page, however the carriage returns aren't there as they are in the text document. How can I keep them as they are in the text document?
-2
votes
2answers
81 views
Reading and running code text from files
I know the way to read texts from files. But what if I want to read text from files that is the part of the code?
I'm working on a game and I realized that describing the level objectsis very long. ...
0
votes
1answer
87 views
Multiple substitutions with a single regular expression with caring about position in perl
i want to read in a file, with lines of the form: "string1 string2 string3" and to substitute several chars off it, (but every chair should get substitue once)
with for example these rules: tsch=> ...
-7
votes
1answer
51 views
Determining the number of people who score in certain range of points [closed]
I'm making a program that reads in a text file in this format
playercode,playername,score
and i then need to do this
Score Analysis:
A report showing the number of players that score in the ...
0
votes
1answer
38 views
File handling gone wrong
the code was running before I tried to read from file into array and display which I got working separately in a different file first . Now I don't know what has gone wrong but it wont debug now can ...
0
votes
5answers
61 views
C++ read from file
when I try to debug this code to read from a file and display it, the console screen comes and goes quickly and I don't understand why it's doing this. Can anyone help me please?
#include ...
-1
votes
1answer
28 views
Thread abortion not happening on File Writing
I have file reading/writing mechanism from my WPF Application. I am reading a file(100,000) records and grouping in based on "Account Type" field in the file.
Each account type has seperate output ...
0
votes
2answers
112 views
How to save the output file in a directory and print the name of the output file?
I am parsing a file from which I then create multiple output files. I would like to save the output file(s) in a special directory in the same folder the perl script was executed from. If the ...
1
vote
3answers
120 views
How do i get the file size to know whether its download or not?
hi iam using following code for downloading epub /pdf from a url .I like to give a progress bar so when i start downlaoding it shows the progress and when the download completes it will popup a ...
1
vote
3answers
49 views
Create File inside jar folder
I have a jar file abc.jar
which has some certain code to create a file inside a folder named temp of same jar file.
like
createFile()
Now i want to include abc.jar into my other web project. ...
3
votes
1answer
107 views
Create virtual file path from stream
I have a general question concerning C# & Windows API:
My task is loading a file from a document management system (DMS) and create a byte array from this file. From the developer of the DMS I ...
1
vote
1answer
415 views
Python: Reading all files in all directories
I have the code working to read in the values of a single text file but am having difficulties reading all files from all directories and putting all of the contents together.
Here is what I have:
...
-4
votes
1answer
56 views
exception in file reading [closed]
I am having an exception in this code and I am unable to figure out the problem.
This code runs without while loop but with the WHILE loop it gives exception
the code is:
public class ...
1
vote
0answers
79 views
Getting extra character with file name
I am using CFileFind to get files list . i have an issue with one particular file always. getting file title with extra character '?' appended .
original name : _KO - Ennamo Yedho Video Song ...
0
votes
1answer
77 views
Opening File in binary form
I am trying to use C++ to open a file. The file can be of any type. The thing that I am trying to do is to open the file as it is stored in the memory.
Suppose that it is a 1 byte text file and ...
-2
votes
1answer
81 views
Use of fprintf and fwrite [closed]
We can't use fprintf if we are going to write the structure to the disk right ????
for text file we can use fwrite or fprintf either but.. for .. binary file we ought to use fwrite.
correct me if i am ...
-1
votes
1answer
92 views
Input/Output through terminal with Codejam questions [closed]
Before i start my question, i would like to declare a few things: -
This is not a copy of a question already on this site.
There happens to be a question on similar lines however, i still do not ...
-2
votes
2answers
50 views
I want to delete part of a line in txt file using file hanling in perl [closed]
such that if the lines in input file are :
abc !asdas
abc, sadasda
abc.
the output file shoud be:
abc
abc,
abc.
0
votes
1answer
99 views
Python: Regex a dictionary using user input wildcards
I would like to be able to search a dictionary in Python using user input wildcards.
I have found this:
import fnmatch
lst = ['this','is','just','a','test', 'thing']
filtered = fnmatch.filter(lst, ...
1
vote
1answer
154 views
perl skip line N while reading a file
How would I skip say line 9 while I'm parsing a text file?
Here's what I got
use strict; use warnings;
open(my $fh, '<', 'file.txt') or die $!;
my $skip = 1;
while (<$fh>){
$_=~ s/\r//;
...
0
votes
1answer
150 views
Using Delimiter and JButton to read next line
newbie to java swing and action listeners.
what i am trying to is display a text file line by line, changing line when i hit a JButton. for delimiter i am using , or |
the code i have so far is:
...
0
votes
1answer
78 views
Creating a text file that could be read using c fscanf
This is my program using which I am trying to read a simple text file and store the output in an structure. The problem I am facing currently is on the while loop where it does not to work. File ...
-3
votes
2answers
73 views
How can I manage and a csv file in c?
i have a csv file and which look like this :
1;53453;45847865
1;37567;53687686
.
.
.
.
n. 1;999768;5645644
and i want to open the file , read it and then split each line to 3 tokens which will ...
0
votes
1answer
36 views
Emailing text files as attachments from rake tasks, files are incomplete
I have a rake task that does a lot, but WRITES whatever it does on to a text file as below,
handler = File.open("cheese.txt", "a+")
handler.write("====Starting write!====\n")
handler
Now, Im ...
0
votes
3answers
84 views
new array values on each submit php
Dont know much PHP and wonder how I can get the new values from an array each time I submit, I have a form with 5 fields, the form sends the information to a txt-file then I want to take only the two ...
-1
votes
1answer
42 views
PHP make echo:ed text stay put on meny switch [closed]
This might seem like a trivial problem but I searched a lot and couldn't find anything that could be the solution to the problem, then I hardly know any php either so it might be a really simple ...







