-1
votes
2answers
90 views
C-programming ftell fseek fread, read size of a file
I have a file. I read the size of file. Then I loop reading two bytes at a time until I get to the end of the file. After every read operation I increment the current position by 2, however the …
1
vote
3answers
68 views
why fseek or fflush is always required between reading and writing in the read/write “+” modes.
Q: I'm trying to update a file in
place, by using fopen mode "r+",
reading a certain string, and writing
back a modified string, but it's not
working.
A: Be sure to call …
1
vote
3answers
207 views
Question about file seeking position..
My previous Question is about raw data reading and writing, but a new problem arised, it seems there is no ending....
The question is: the parameters of the functions like lseek() or fseek() are all …
1
vote
6answers
250 views
Using fseek to backtrack
Is using fseek to backtrack character fscanf operations reliable?
Like for example if I have just fscanf-ed 10 characters but I would like to backtrack the 10 chars can I just fseek(infile, -10, …
0
votes
8answers
467 views
C malloc/free + fgets performance
As I loop through lines in file A, I am parsing the line and putting each string (char*) into a char**.
At the end of a line, I then run a procedure that consists of opening file B, using fgets, …
0
votes
2answers
168 views
PHP fseek() equivalent for variables?
Hi,
What I need is an equivalent for PHP's fseek() function. The function works on files, but I have a variable that contains binary data and I want to work on it. I know I could use substr(), but …
2
votes
5answers
304 views
fseek / rewind in a loop
I have a situation in a code where there is a huge function that parses records line-by-line, validates and writes to another file.
In case there are errors in the file, it calls another function …
4
votes
7answers
613 views
How do you determine the size of a file (in C) for files that are larger than 4GB?
The code currently does this and the fgetpos does handle files larger than 4GB but the seek returns an error, so any idea how to seek to the end of a file >4GB?
fpos_t currentpos;
…
