Jump to content
YOUR-AD-HERE
HOSTING
TOOLS
992Proxy

Locked mDirExists [By Metal]


Expermicid

Recommended Posts

[lenguaje=delphi]Function mDirExists(Directorio: string): boolean;

var F: THandle;

begin

Result:= False;

F:= GetFileAttributes(PChar(Directorio));

if F <> INVALID_HANDLE_VALUE then

if F = FILE_ATTRIBUTE_DIRECTORY then

Result:= True;

end;[/lenguaje]

 

Autor: Metal_Kingdom

Edited by Expermicid
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.