GetFileAttributes

[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)][return: MarshalAs(UnmanagedType.U4)]
public static extern uint GetFileAttributes(
   string lpFileName
);

Microsoft documentation: Linkarrow-up-right

Last updated