Tagged Questions

4
votes
3answers
497 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: ...
2
votes
3answers
480 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
41 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
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
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
1answer
103 views

fseek, ftell, reading a big file [closed]

Possible Duplicate: Getting one line in a huge file with PHP Reading a specific line from a text file I have a huge file in which I want to view on the web. I want for the last 100 lines ...
0
votes
0answers
68 views

fread/fseek for a single data element vs performance?

Is a memory page loaded to main memory for each fread/fseek on a file? I am trying to implement a byte wise hashing along with BTREE in between , (i.e) If the first byte is (For ex:) 200 .I would ...