函数参考


_FileCreate

创建或者清零指定的文件.

#Include <File.au3>
_FileCreate($sFilePath)

参数

$sFilePath 要创建的路径和文件名.

返回值

@Error: 1 = 打开指定文件错误
2 = 文件不能被写入

注意/说明

None.

相关

FileOpen

示例/演示


#include <File.au3>
If Not _FileCreate("error.log") Then
    MsgBox(4096, "错误", " Error Creating/Resetting log.      error:" & @error)
EndIf