Tagged Questions
17
votes
7answers
1k views
Fastest way to read every 30th byte of large binary file?
What is the fastest way to read every 30th byte of a large binary file (2-3 GB)? I've read there are performance problems with fseek because of I/O buffers, but I don't want to read 2-3 GB of data ...
4
votes
4answers
558 views
Using fseek and ftell to determine the size of a file has a vulnerability?
I've read posts that show how to use fseek and ftell to determine the size of a file.
FILE *fp;
long file_size;
char *buffer;
fp = fopen("foo.bin", "r");
if (NULL == fp) {
/* Handle Error */
}
if ...
4
votes
3answers
494 views
Homemade fstat to get file size, always returns 0 length
I am trying to use my own function to get the file size from a file. I'll use this to allocate memory for a data structure to hold the information on the file.
The file size function looks like this:
...
4
votes
7answers
1k 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;
...
3
votes
2answers
143 views
How in portable C to seek forward when reading from a pipe
Since fseek() does not work on pipes what methods exist for simulating seeking forward. The naive approach is to use fread() and throw away the contents read into the memory buffer. For huge seeks to ...
3
votes
3answers
757 views
Does fseek() move the file pointer to the beginning of the file if it was opened in “a+b” mode?
I wish to open a file using the "a+b" mode, i.e. if it does not exist it is created automatically, but if it does I don't want to overwrite it. I want to be able to read and write to the file.
The ...
3
votes
5answers
975 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 ...
2
votes
4answers
328 views
Problem with fseek
Here is my code.
if(fseek(file,position,SEEK_SET)!=0)
{
throw std::runtime_error("can't seek to specified position");
}
I used to assume that even if position is greater than num of characters in ...
2
votes
3answers
477 views
Read file in array line by line
Can you set any index of array as starting index i.e where to read from file? I was afraid if the buffer might get corrupted in the process.
#include <stdio.h>
int main()
{
FILE *f = ...
2
votes
3answers
559 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
2answers
40 views
understanding usage of fseek
#include<stdio.h>
int main(int argc, char **argv){
FILE *fp = NULL;
fp = fopen("D://test.txt","wb");
if(fp == NULL){
printf("Error opening file\n");
}
typedef ...
1
vote
1answer
124 views
Seek to line number C
I have an ASCII binary file which looks something like:
00010110001001000110011001000111
01011000011100001010100001001000
11110001011010000010010101111010
00000000000000000000000000000000
...
1
vote
3answers
129 views
Efficient random access within a file? [C]
I have a text file I use to hold an index of files and words (with their frequencies) that appear in them. I need to read the file into memory and store the words so they can be searched. The file is ...
1
vote
3answers
1k views
C Program: How to properly use lseek() or fseek() to modify a certain part of a file?
I have a binary file in CSV format that contains multiple records. Each record is entered in as user_name, last_name, first_name, num_wins, num_losses, num_ties. I am creating a method to update a ...
1
vote
3answers
605 views
Reading a specific number of lines from a file in C (scanf, fseek,fgets)
I have a process master that spawns N child processes that communicate with the parent through unnamed pipes. I must be able to:
make the father open the file and then send, to each child, a struct ...
1
vote
8answers
1k 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, ...
1
vote
5answers
1k 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
3answers
58 views
Combing two files with binary format
I wrote this code to test to combine two files:
long getFileSize(char *filename)
{
FILE* fp=fopen(filename,"rb");
fseek(fp,0,SEEK_END);
long size=ftell(fp);
fclose(fp);
...
0
votes
2answers
71 views
fseek() causing an overlap in the data
Im reading a specified chunk of a file with fseek and fread functions and then writing it to another file. For some reason in the destination file I get about 20 bytes overlap between every chunk ...
0
votes
3answers
197 views
fseek() doesn't work
I have opened a file using a and r+ but when I use fseek and ftell the file pointer is always 0.
My file looks like this:
1 -3
2 -8
And I want to add another line between the two but it ...
0
votes
3answers
459 views
how to set file pointer with fseek
I know my file pointer is at end of the line after printing this string: "xyz".
How can I get it to the start of the line? (pointing to x)
offset = ftell(fp);
fseek(fp, offset - sizeof("xyz") , ...
0
votes
3answers
186 views
C : files manipulation Can't figure out how to simplify this code with files manipulation
I have been working on this code but I can't find out what is wrong.
This program does compile and run but it ends up having a fatal error.
The program reads a file and collect the numbers in order ...
0
votes
1answer
182 views
editing file using fseek
can you help me figure out what's the problem in my code.. i wanted to edit a specific line.... thnx
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main (){
char ...
0
votes
1answer
359 views
Array of Linked lists on disk
I am trying to find how to store and process (search, add, remove) an array of linked lists on disk. For example in memory, it would like
struct list {
int a;
struct list *next;
}LIST
LIST ...
0
votes
3answers
255 views
Appending a data to file in c
I require to add a string before 45byte in an existing file. I tried using fseek as bellow.
int main()
{
FILE *fp;
char str[] = "test";
fp = fopen(FILEPATH,"a");
fseek(fp,-45, SEEK_END); ...
0
votes
4answers
338 views
Reading the last 50 characters of a file with fseek()
I'm trying to read the last 50 characters in a file by doing this:
FILE* fptIn;
char sLine[51];
if ((fptIn = fopen("input.txt", "rb")) == NULL) {
printf("Coudln't access input.txt.\n");
...
-1
votes
1answer
68 views
more undestanding with fseek() and EOF IN C
please help me the fseek and the value 0L in the fseek what this value means also seek_end means from end also please help me with the EOF cltr+z is not working
void modify()
{
int ch1;
FILE *f1;
...
-1
votes
2answers
7k 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 ...