ftell is a standard C library function which returns the current offset in a file or stream in relation to the first byte.

learn more… | top users | synonyms

0
votes
1answer
35 views

Equivalent of fseek and ftell in main

I would like to know if there is an equivalent of fseek and ftell when I'm working in main. For example, if I type the name of a file when asked, at end I hit enter. Next I'll ask the user another ...
2
votes
3answers
65 views

ftell at a position past 2GB

On a 32-bit system, what does ftell return if the current position indicator of a file opened in binary mode is past the 2GB point? In the C99 standard, is this undefined behavior since ftell must ...
0
votes
1answer
312 views

Reading a file into a string buffer and detecting EOF

I am opening a file and placing it's contents into a string buffer to do some lexical analysis on a per-character basis. Doing it this way enables parsing to finish faster than using a subsequent ...
0
votes
3answers
119 views

Is 'ftell()' return value guaranteed to be larger when more characters have been read?

I understand, after a careful reading of cplusplus.com's C library reference that "For text streams, the numerical value [returned by ftell()] may not be meaningful" My question is: Does this mean ...
0
votes
4answers
229 views

working of fwrite in c++

I am trying to simulate race conditions in writing to a file. This is what I am doing. Opening a.txt in append mode in process1 writing "hello world" in process1 prints the ftell in process1 which ...
3
votes
1answer
180 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", ...
1
vote
3answers
92 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 ...
3
votes
1answer
277 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
240 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 ...
0
votes
1answer
291 views

fast access into large file - fseek ftell fsetpos fgetpos

I'm faced with providing some sort of rapid access to selected data in gigabyte files. Once I locate the starting point, subsequent access would be sequential. The files include a date at the front of ...
3
votes
4answers
851 views

Are there cases where fseek/ftell can give the wrong file size?

In C or C++, the following can be used to return a file size: const unsigned long long at_beg = (unsigned long long) ftell(filePtr); fseek(filePtr, 0, SEEK_END); const unsigned long long at_end = ...
0
votes
1answer
910 views

How to make lseek64 _actually_ return 64-bit offset?

#define _FILE_OFFSET_BITS 64 #define _LARGEFILE64_SOURCE ... off64_t st_size; ... st_size = (off64_t)lseek64(fd, (off64_t)0, SEEK_END); fprintf(stderr, "QQQ st_size=%llx %lld\n", st_size, ...
3
votes
1answer
1k views

ftell on a file descriptor?

Is there a way to do what ftell() does (return the current position in the file) on a raw file descriptor instead of a FILE*? I think there ought to be, since you can seek on a raw file descriptor ...
0
votes
2answers
212 views

ftell error after the first call to fread

So I have a very simple program that reads the 3 first bytes of a file: int main(void) { FILE *fd = NULL; int i; unsigned char test = 0; fd = fopen("test.bmp", "r"); ...
5
votes
1answer
982 views

ftell( stdin ) causes illegal seek error

The following code outputs "Illegal seek": #include <stdio.h> #include <errno.h> #include <string.h> int main() { errno = 0; getchar(); getchar(); getchar(); ...
2
votes
4answers
2k views

Why is fwrite writing more than I tell it to?

FILE *out=fopen64("text.txt","w+"); unsigned int write; char *outbuf=new char[write]; //fill outbuf printf("%i\n",ftello64(out)); fwrite(outbuf,sizeof(char),write,out); printf("%i\n",write); ...
7
votes
4answers
2k views

End of FILE* pointer is not equal to size of written data

Very simply put, I have the following code snippet: FILE* test = fopen("C:\\core.u", "w"); printf("Filepointer at: %d\n", ftell(test)); fwrite(data, size, 1, test); printf("Written: %d bytes.\n", ...