Re: newbie question [C language]



On Thu, 30 Jun 2005 08:08:06 -0500, osmium wrote
(in article <3ii95nFlnl7mU1@xxxxxxxxxxxxxx>):

> "Fred_NacH" writes:
>
>> I was wondering, how to retrieve the size/length of a file by only using
>> the ansi functions...
>
> This one often causes a lot of controversy, some people say there is a
> (usually unnamed) system on which it won't work or at least there *could
> have been* a system on which it wouldn't work if such a system had been
> built.
>
> Open the file in *binary* mode, seek to end of file, and use ftell() to see
> where you are. If you like acrimony and pedantry, look around on Usenet for
> these discussions which flare up from time to time.

I wonder if you have ever tried it on fat binaries under OS X.
I suspect not.


--
Randy Howard (2reply remove FOOBAR)

.



Relevant Pages

  • Re: newbie question [C language]
    ... how to retrieve the size/length of a file by only using ... Functions that retrieve file length etc. are not in the ANSI C spec ... #EOT ... Prev by Date: ...
    (comp.programming)
  • Re: newbie question [C language]
    ... >> the ansi functions... ... > Functions that retrieve file length etc. are not in the ANSI C spec ... Randy Howard (2reply remove FOOBAR) ... Prev by Date: ...
    (comp.programming)
  • Re: newbie question [C language]
    ... how to retrieve the size/length of a file by only using ... >Open the file in *binary* mode, seek to end of file, and use ftell() to see ... This won't work if you don't have read permission on the file. ... it doesn't matter if there is some magical ansi way of doing this. ...
    (comp.programming)