GetFileAttributesEx function kernel32
int
GetFileAttributesEx(
- Pointer<
Utf16> lpFileName, - int fInfoLevelId,
- Pointer<
NativeType> lpFileInformation
Retrieves attributes for a specified file or directory.
BOOL GetFileAttributesExW(
LPCWSTR lpFileName,
GET_FILEEX_INFO_LEVELS fInfoLevelId,
LPVOID lpFileInformation
);
Implementation
int GetFileAttributesEx(Pointer<Utf16> lpFileName, int fInfoLevelId,
Pointer lpFileInformation) =>
_GetFileAttributesEx(lpFileName, fInfoLevelId, lpFileInformation);