GetFileInformationByHandle

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetFileInformationByHandle(
   SafeFileHandle hFile,
   out BY_HANDLE_FILE_INFORMATION lpFileInformation
);

Microsoft documentation: Link

Last updated