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.

learn more… | top users | synonyms

2
votes
1answer
38 views

Flushing fopen()'ed files opened in update mode,between read and write operations.Explicit flushing needed?

I have read this about the switch between read and write operations(and vice-versa) for files opened for update using fopen() (LINK) "For files open for update (those which include a "+" sign), on ...
0
votes
1answer
36 views

Undoing the effects of ungetc() : “How” do fseek(),rewind() and fsetpos() do it?Is buffer refilled each time?

Huh!!How shall I put the whole thing in a clear question!!Let me try: I know that the files opened using fopen() are buffered into memory.We use a buffer for efficiency and ease.During a read from ...
0
votes
1answer
24 views

fseek(stdin,0,SEEK_SET) and rewind(stdin) REALLY do flush the input buffer “stdin”.Is it OK to use them?

I was thinking since the start that why can't fseek(stdin,0,SEEK_SET) and rewind(stdin) flush the input buffer since it is clearly written in cplusplusreference that calling these two functions flush ...
0
votes
2answers
39 views

Can't navigate through a file using fseek (C)

I'm trying to navigate through a file until I find two rows where the first 4 digits of the first are different from the first 4 of the next one. For that I've been using fseek to navigate trough it ...
1
vote
1answer
44 views

Can fseek(stdin,1,SEEK_SET) or rewind(stdin) be used to flush the input buffer instead of non-portable fflush(stdin)?

Since I discovered fflush(stdin) is not a portable way to deal with the familiar problem of "newline lurking in the input buffer",I have been using the following when I have to use scanf() : ...
0
votes
1answer
28 views

Need assistance with fseeking

struct FATEntry entry1; strcpy(entry1.name, "abc"); entry1.next = 3; entry1.size = 10; entry1.mtime = 100; struct FATEntry entry2; strcpy(entry1.name, ""); entry1.next = ...
0
votes
1answer
53 views

fseek and fread on a file containing a list of parts

I have a file containing a list of parts and part numbers. What I need to do is display the name of the part at a location given by a file pointer and an integer. Something like sizeof(part) * n and ...
1
vote
1answer
53 views

Templates and name lookup with `stdio.h` functions

I'm trying to build the PCL library in a 32 bit Windows 7 with MinGW. When building the outofcore module I got several error messages about _fseeki64: error: there are no arguments to '_fseeki64' ...
1
vote
1answer
81 views

Split a large text file by not simply reading in lines

I have a large text file that I would like a split into an arbitrary number of smaller ones. The behavior I need is nearly identical to the split terminal command except that I need the files to ...
0
votes
1answer
27 views

reading a certain part of a file with fseek

I have to read a png file(in binary) and i have to get out height and width of the picture(starting as 17 and long 8bytes together). i tried FILE* picture = fopen("test.png","rb"); fseek(picture, ...
1
vote
3answers
73 views

How does the computer count?

#include<stdio.h> int main() { FILE* f; f=fopen("book.txt","w"); char* sentence="0123456789"; fprintf(f,"%s\n",sentence); fseek(f,0,SEEK_END); int a=ftell(f); ...
0
votes
1answer
82 views

Reading from a file opened using append mode

It might be a very dumb question but I am modifying someone else's code and it seems I need to read from a file that was opened in append mode. I tried to fseek to the beginning of the file but ...
0
votes
2answers
77 views

Is there any way in NSFileManager to get contents of a file only for some range of bytes

I have some files that are of size 6.7GB, and more (these are video files). I want to get chunks of file data to send to my server, so what I currently do is : contents = [fileManager ...
0
votes
0answers
71 views

C++ fseek/fread for mapped files

All the time I used the following code to get bytes from a file: unsigned char *nEncodedBytes = NULL; FILE *file =fopen(szFileName,"rb"); if (file) { fseek( file,iFirstByteToRead, SEEK_SET); ...
0
votes
2answers
72 views

C++ fseek: Is the first byte at position 0 or 1?

I want to read bytes from a file with a certain offset. I have to do the same thing in VB6 and from C++. For example like that: FILE *file =fopen(szFileName,"rb"); fseek( file, iFirstByteToRead, ...
1
vote
2answers
192 views

C phonebook program: Reposition cursor in text file to start of previous line

writing a C program which opens a text file called phoneList.txt and searches for contacts (firstname, lastname, phonenumber), and updates an existing contact's phone number. My issue is in the ...
-4
votes
1answer
112 views

C programming , delete function

try to use fseek to modify the name but it cannot return what result i want which is the name cannot be modify and remain the same struct phonebook { char name[20]; }; struct phonebook a; char ...
1
vote
2answers
179 views

fseek go back to the end of file when writing a value

I am trying to override 4 bytes at position 4 in a file, but fseek seems not to be working. My code: int r = fseek(cacheStream, 4, SEEK_SET); std::cout << "fseek returns " << r << ...
0
votes
2answers
250 views

fseek, fread and return the pointer (C) in binary file function not working properly

I want to return the pointer to the structure that I read from the file (it goes to another functions that basicaly just prints the data.) Function gets the (serial number -1) through int sem, and ...
0
votes
1answer
32 views

Is it possible to offset a tab with fseek?

I'm trying to parse a header for an archive file and I need to skip tabs. I've been trying to use fseek() to do this, but I can't determine if it's even possible. Here's an example, though I'm sure ...
0
votes
1answer
95 views

printf adding a \n in a format string

I'm trying to build a version of the ar unix command in C. I'm working on the verbose output and I've got most of it covered. However, when I read through the file and put the file name in a format ...
0
votes
1answer
110 views

How to read comma separated numbers from a file into an multidimensional array in C

I want to write a function that creates arrays of integers in a file with comma separated numbers like this: 1, 54520.00000, 86397.00000, 0 2, 54440.00000, ...
0
votes
1answer
206 views

Windows physical drive access fopen and fseek

I'm currently trying to access a physical hard disk as a stream of binary data in C. I've mounted an image (.img), and it's readable from the OS (Win 7). My C program simply attempts to open the ...
1
vote
1answer
107 views

using fseek() to find position entered by user

I need to ask the user for an ID Number, and then use the function fseek() to find the position of the ID Number entered by the user, and then be able to modify the records. I have something like ...
-1
votes
1answer
81 views

Method to Batch Update on C Programming

I need to do this Batch Update on a products list. This batch update has to retrieve EVERY product from within the database and get it's "quantity in Order". This "Quantity in Order" then has to be ...
0
votes
2answers
62 views

Why doesn't this purposely made invalid file positioning not bringing up any errors

So given a binary file containing 100 bytes. I'm pretty sure that the INVALID ones should cause and error, but why doesn't it? I'm confused the once in INVALID should bring up a semantic error right? ...
0
votes
0answers
124 views

fseek is unsuccessful in a binary file

edit Found out my problem. I didn't realize the only allowable values for the origin parameter of fseek are SEEK_SET SEEK_CUR and SEEK_END, so i changed my call to fseek(diskPointer, startOfData, ...
3
votes
1answer
170 views

C programming fwrite jumps to end of file

I'm writing a C module and I'm running into an interesting problem I never seen before. // Many other operations before this point fseek(samples_file, 0, SEEK_SET); printf("ftell A1 %llu\n", ...
2
votes
3answers
312 views

Can fseek() be used to insert data into the middle of a file? - C

I know that the function fseek() can be used to output data to a specific location in a file. But I was wondering if I use fseek() to move to the middle of the file and then output data. Would the new ...
1
vote
3answers
85 views

overwriting lines in file in C, strange output

I'm trying to go through a file line by line (each line is no more than 50 characters), shift each character by 10 or -10 (to encrypt and decrypt) and then print the shifted string where the old ...
1
vote
1answer
155 views

Strange fseek()/fwrite() performance on MacOS

I have problems with write performance of fseek()/fwrite() on my Mac. I'm operating on large files up to 4 GB of size, tests below were made with a rather small one with only 120 MB. My strategy is as ...
0
votes
2answers
826 views

How to use SEEK_CUR on a FILE*

offset=ftell(ptr)-sizeof(student1); fseek(ptr,offset,SEEK_SET); fwrite(&student1,sizeof(student1),1,ptr); This C code means move the pointer from the current position ftell(ptr) to start of the ...
0
votes
2answers
228 views

fseek on EOF character

I'm currently using fgetc() in loop for reading whole file. But I need to detect EOF in two iterations of this loop. I know that EOF can't be returned to stream using ungetc(). What about using ...
0
votes
3answers
77 views

file size is always changing , using C and fopen_s function

I wrote this basic function : int save_files(PCHAR fileName) { errno_t err; FILE* pFile = NULL; do { if (!fileName) { printf("Input is NULL \n"); ...
1
vote
1answer
243 views

PHP warning messages for fseek, feof and fread when building a Captcha wav

I'm currently getting PHP Warning messages saying ("expects parameter 1 to be resource") when try to run fseek, feof and fread. I believe this is because it can't find the file in each case. Let me ...
0
votes
2answers
168 views

reading characters line by line from a text file in c with multiprocessing

hi there i'm facing with null character problem while i'm reading and try to printing characters of a file with using fseek() function in a multiprocess programme. here is my simple code, #include ...
0
votes
3answers
253 views

fseek does not work in linux [duplicate]

Possible Duplicate: Using fseek with a file pointer that points to stdin i have a program that use fseek to clear my input buffer, it works well in Windows, buf fails in Linux. Please help ...
0
votes
1answer
48 views

Spliting and combining files

I have sort of a "beginning" of a solution. I wrote this function (Sorry about the spacings): <?php set_time_limit(0); // Just to get the remote filesize function checkFilesize($url, $user = "", ...
1
vote
1answer
148 views

XML XSLT Result-Document fseek

Using XSLT transformation I want to convert an XML file, that in turn represents various chunks of another file, into a HTML file with a link to the file that was represented. Input XML File: ...
1
vote
2answers
137 views

How to use fopen to write data to a specific section of a file and push existing data down the file without deleting it?

Just as the title asks, how do I use fopen to write data to a specific section of a file while pushing the existing data down without erasing it. I have used fseek along with SEEK_SET and SEEK_CUR and ...
0
votes
1answer
88 views

How To Write New RSS Item Line To The Top

I pieced some code together, it probably could be written better -- but it works and I have learned not to be picky with functional code. At any rate what I have here is some code that will ...
3
votes
1answer
259 views

ftello/fseeko vs fgetpos/fsetpos

What is the difference between ftello/fseeko and fgetpos/fsetpos? Both seem to be file pointer getting/setting functions that use opaque offset types to sometimes allow 64 bit offsets. Are they ...
-2
votes
3answers
471 views

perl file read, truncate

I am trying to modify a config file. I first read it into @buffer, depending on a regex match. The modified buffer gets written back on disk, in case the file got smaller, a trunciation is done. ...
0
votes
1answer
248 views

Reading and writing to file using fseek, wrong data on read

What I'm essentially trying to do is to create a 2D array but one that is in a file rather than in main memory. In order to jump around this file i'm using fseek then fread to return what I need into ...
4
votes
2answers
711 views

fseek vs rewind?

I have noticed two methods to return to the beginning of a file FILE *fp = fopen("test.bin", "r") fseek(fp, 0, SEEK_END); rewind(fp); and FILE *fp = fopen("test.bin", "r") fseek(fp, 0, SEEK_END); ...
2
votes
3answers
216 views

Overwrite to a specific line in c

I have a file of about 2000 lines of text that i generate in my program, every line has the information of an employee and it's outputed like this 1 1 Isaac Fonseca 58 c 1600 1310.40 6 1 0.22 ...
1
vote
2answers
158 views

Call read() returns 0 but buffer changed, not happened when call fread() to read the same offset

if I read file by calling read() like this: unsigned char buf[512]; memset(buf, 0, sizeof(unsigned char) * 512); int fd; int readcount; int offset = 10315001; /* file size is 14315504 */ fd = ...
-3
votes
1answer
137 views

How can I implement a sort using C?

I need to implement a sort in C. I tried using fgets to get successive lines and compare and swap their order, but I experience a problem when I try to swap lines of lower order to upper orders. Are ...
1
vote
2answers
456 views

How to move file pointer to previous line in php?

Text file in question is named fp.txt and contains 01, 02, 03, 04, 05, ...10 on each line. 01 02 ... 10 Code: <?php //test file for testing fseek etc $file = "fp.txt"; $fp = fopen($file, "r+") ...
5
votes
4answers
272 views

PHP: Read from certain point in file

Similar to: how to read only 5 last line of the txt file I have a large log file and I want to be able to show 100 lines from position X in the file. I need to use fseek rather than file() because ...

1 2 3