Search the Community
Showing results for tags 'fileexist'.
-
I'm having troubles with FileExist function. My autoit version is 3.3.14.2. I'm working with C:\windows\System32 folder. On windows 7 I use this script copied and modified from FileExist.au3 from the Autoit Help chm #include <MsgBoxConstants.au3> #include <WinAPIFiles.au3> E...
-
Hello friends! I want to delete the file only if it exists, if not, must not appear msgbox code: $MyBox = MsgBox(1, "Cancel file", "the file records.dat exists .. want to delete it!") If $MyBox == 1 Then if FileExist then FileRecycle("records.dat") return false EndIf