与C/C++中 chsize(改变文件大小) 等价的 Delphi 函数是什么?(20分)

  • 主题发起人 主题发起人 xcy1234
  • 开始时间 开始时间
X

xcy1234

Unregistered / Unconfirmed
GUEST, unregistred user!
如题,谢谢告知!
 
你先移动文件指针,然后使用 Truncate(f);
就可以达到你的目的。
procedure Truncate(var F);

Description

In Delphi code, Call Truncate to cause the current file position to become end-of-file (Eof(F) is true).

F is a file variable of any type except a text file. Truncate does not work on text files. F must be open.
 
接受答案了.
 
后退
顶部