Tagged Questions
ftell is a standard C library function which returns the current offset in a file or stream in relation to the first byte.
7
votes
4answers
1k 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", ...
4
votes
1answer
562 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
766 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);
...
1
vote
1answer
328 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
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
1answer
298 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, ...
0
votes
2answers
111 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");
...