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 file this code would work correct (i.e. throw error), but it wouldn't. So I want to know how can I handle seeking failure when trying to seek out of file range?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Well, you can always check for file length before doing the fseek.

void safe_seek(FILE* f, off_t offset) {
    fseek(f, 0, SEEK_END);
    off_t file_length = ftell(f);
    if (file_length < offset) {
        // throw!
    }
    fseek(f, offset, SEEK_SET);
}

Be aware though that this is not thread safe.

link|improve this answer
Or instead of using fseek use fstat. This eliminates the need to restore current seek position. – Matt H May 22 '11 at 23:05
Yes, but fstat is not guaranteed to be available on non-Unix systems, I think. – kotlinski May 23 '11 at 8:51
feedback
if( fseek(file,position,SEEK_SET)!=0 || ftell(file) != position )
{
  throw std::runtime_error("can't seek to specified position");
}
link|improve this answer
1  
This is not guaranteed to work. ftell() can return position outside file length. – kotlinski Feb 17 '11 at 11:25
Im my case this doesn't work. – Mihran Hovsepyan Feb 21 '11 at 10:19
feedback

According to man: http://linuxmanpages.com/man3/fseek.3.php, fseek returns non-zero value in case of an error, and the only errors that may appear are:

EBADF The stream specified is not a seekable stream.
EINVAL The whence argument to fseek() was not SEEK_SET, SEEK_END, or SEEK_CUR.

Falling beyond the end-of-file is probably considered not an error for lseek. However, calling feof immediately after may indicate the out-of-file condition.

link|improve this answer
If I'm not wrong, eof status is only guaranteed to be triggered on read or write. – kotlinski Feb 17 '11 at 11:27
Yes, you're probably right. – mbaitoff Feb 17 '11 at 11:49
feedback

It's not an error to seek past the end of the file. If you write to that offset, the file will be extended with null bytes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.