tags:

views:

157

answers:

1

i am working on C source to translate to delphi but i was stuck on reading files on ftell() function, can you help me find the equivalent function in delphi?

+3  A: 

If you have an object of type File, then you may use the FilePos() function, described here.

Heath Hunnicutt
And if it is a stream then strm.position
Marco van de Voort