Jump to content

FileExists-Method


MatheFreak
 Share

Recommended Posts

You could use FileGetAttributes:

Func _FileExists($fileName)
    Local $Ret = DllCall("Kernel32.dll","int","GetFileAttributesW","wstr","\\?\" & $fileName)
    Return $Ret[0]<>-1; GetFileAttributesW return -1 if an error occurs
EndFunc
MsgBox(0, '', _FileExists(@AutoItExe))
MsgBox(0, '', _FileExists("D:\File\Not\Exists___rew"))

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

Func _FileExists($fileName)
    Local $Ret = DllCall("Kernel32.dll","int","GetFileAttributesW","wstr","\\?\" & $fileName)
    Return $Ret[0]<>-1; GetFileAttributesW return -1 if an error occurs
EndFunc
Thanks!

It works fine with:

Set fso = CreateObject("Scripting.FileSystemObject")
  fso.FileExists(YourFileName)

But I'ld like to get rid of all those Kernel and SystemObjects stuff.

And I wonder why it works in AutoIt, but not AutoItX3.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...