创建或者清零指定的文件.
#Include <File.au3>
_FileCreate($sFilePath)
$sFilePath | 要创建的路径和文件名. |
@Error: | 1 = 打开指定文件错误 |
2 = 文件不能被写入 |
#include <File.au3>
If Not _FileCreate("error.log") Then
MsgBox(4096, "错误", " Error Creating/Resetting log. error:" & @error)
EndIf