function FileExists(const FileName: string): Boolean;
Description
FileExists returns True if the file specified by FileName exists. If the file does not exist, FileExists returns False.
如何判断一个文件是否存在:
if FileExists('路径'+文件名)
then application.messagebox('文件存在','提示',mb_ok)
else application.messagebox('文件不存在','提示',mb_ok)
一个文本文件会不会被写满 :如果是担心文本文件大小,只要硬盘存在空间,应该没问题;
如果是文本文件内容,大小可指定;