Tagged Questions
fseek is a C function belonging to the ANSI C standard library, and included in stdio.h. Its purpose is to change the file position indicator for the specified file or stream.
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
495 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
6answers
897 views
How is fseek() implemented in the filesystem?
This is not a pure programming question, however it impacts the performance of programs using fseek(), hence it is important to know how it works. A little disclaimer so that it doesn't get closed.
I ...
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
3answers
375 views
fseek now supports large files
It appears that fseek now, at least in my implementation, supports large files naturally without fseek64, lseek or some strange compiler macro.
When did this happen?
#include <cstdio>
#include ...
3
votes
2answers
144 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
758 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
3answers
124 views
Reading file starting at end in MATLAB
I was wondering if anyone knows how to open and read from a file in MATLAB where you begin reading from the end of the file. The file is constantly being updated (at some nonconstant rate between ...
2
votes
2answers
320 views
PHP appending to file from specific position
In php i am opening a text file and appending to it. However I need to append 3 chars before the end of file.
In other words i need to append/write from a specific place in the file.
Can any one ...
2
votes
1answer
242 views
how to read a video file placed at server in php - video file's name includes http wrapper
I am using the following code but there appears to be warning with fseek and returns -1 instead of 0.
$file = fopen("http://www.example.com/public_html/data/video/temp.mov", "r") or exit("unable to ...
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
4answers
1k views
Read a file backwards line by line using fseek
How do I read a file backwards line by line using fseek?
code can be helpful. must be cross platform and pure php.
many thanks in advance
regards
Jera
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 ...
2
votes
3answers
678 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
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
163 views
how to rewind() an http stream file in PHP other than fclose() and fopen() again?
PHP's fopen lets you fopen() http locations as file streams.
But you can't fseek() or rewind() them, is there a way to accomplish this other than fclose() and fopen() it again?
1
vote
1answer
308 views
fseek char linux device
I'm trying to write a simple char device for linux, I need to read and write the device by fread/fwrite and use fopen and fseek. I've written a simple test program to use my device and I've noted that ...
1
vote
1answer
467 views
Seeking by bytes in FFmpeg
I will appreciate your advice on the following. I'am developing a video converter which based on FFmpeg's libavformat, and I need to implement an accurate seeking API. First of all, I developed an ...
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
606 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
1answer
74 views
Streaming video content from RAR archives
I'm trying to stream video content from a RAR archive.
and it goes fine for the first seconds, but the problem is that the stream does not support fseek, so the client can't ask for more data, or ...
0
votes
1answer
101 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
2answers
57 views
PHP fseek with remote files
I want to read remote file from the end but fseek doesn't support remote files. Is there way to make this?
0
votes
5answers
73 views
Will fseek function flush data in the buffer in C++?
We know that call to functions like fprintf or fwrite will not write data to the disk immediately, instead, the data will be buffered until a threshold is reached. My question is, if I call the fseek ...
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 ...
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
1answer
60 views
Unable to debug some code ? Strange stack with MSVC?
Sometimes I got a crash of my application with the following stack trace :
atiocl.dll!0f6c463a()
[Frames below may be incorrect and/or missing, no symbols loaded for atiocl.dll]
...
0
votes
1answer
93 views
Do .. While Loop/Textfile/Operation Problem
Hi I have a problem with the following code:
int skp = 1;
do{
file.seekp(skp);
file>>s;
cout<<s;
stats[s]++;
skp++;
skp++;
}while(skp <= 10);
The ...
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
83 views
FUSE fseek unexpected behaviour with direct_io
I'm trying to write a FUSE filesystem that presents streamable music as mp3 files. I don't want to start to stream the audio when just the ID3v1.1 tag is read, so I mount the filesystem with direct_io ...
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
256 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
0answers
543 views
optimal way to prepend a file in php
how do I do this.
the file can get very big, so good performance is necessary
code is helpful.
this is what i have so far
function prepend($string, $filename) {
$context = ...
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");
...
0
votes
3answers
447 views
What's the intended use of _fread_nolock, _fseek_nolock?
we have a C++ class which basically reads and writes vectors from a binary file. An exemplary read function that loads a single vector into memory looks like this:
int load (const __int64 index, T* ...
0
votes
3answers
585 views
PHP fseek() equivalent for variables?
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 that ...
-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 ...