GetFileAttributesEx function kernel32

int GetFileAttributesEx(
  1. Pointer<Utf16> lpFileName,
  2. int fInfoLevelId,
  3. 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);