Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
// Frequently used constants (incomplete - see https://msdn.microsoft.com/en-us/library/windows/desktop/gg258117(v=vs.85).aspx for full list)
const unit FILE_ATTRIBUTE_ARCHIVE = 0x20;
const unit FILE_ATTRIBUTE_DIRECTORY = 0x10;
const unit FILE_ATTRIBUTE_HIDDEN = 0x2;
const unit FILE_ATTRIBUTE_NORMAL = 0x80;
const unit FILE_ATTRIBUTE_READONLY = 0x1;
const unit FILE_ATTRIBUTE_SYSTEM = 0x4;
const unit FILE_ATTRIBUTE_TEMPORARY = 0x100;
const uint INVALID_FILE_ATTRIBUTES = 0xffffffff;
Notes:
None.
Tips & Tricks:
Please add some!
VB.Net Signature:
<DllImport("kernel32.dll")>_
Public Shared Function GetFileAttributes(ByVal lpFileName As String) As Integer
End Function
public static bool GetFileAttributesEx(string lpFileName, out WIN32_FILE_ATTRIBUTE_DATA fileData) {
return GetFileAttributesEx(lpFileName, GET_FILEEX_INFO_LEVELS.GetFileExInfoStandard,
out fileData);
}
if ((GetFileAttributes(@"\\?\UNC\" + file) & FILE_ATTRIBUTE_ARCHIVE) != FILE_ATTRIBUTE_ARCHIVE)
{
bool deleted =DeleteFileW(@"\\?\UNC\"+file);
if (!deleted)
{
int lastError = Marshal.GetLastWin32Error();
Console.WriteLine("Failed to delete '{1}': error={0}", lastError, file);
}
}
Alternative Managed API:
System.IO.File.GetAttributes
The GetFileAttributesEx API
2/8/2011 10:54:08 AM - Kåre Smith-83.108.28.160
The GetFileAttributesEx API
2/8/2011 10:56:24 AM - mklement0-173.48.238.201
Structure used by GetFileAttributesEx API
4/4/2018 11:00:07 PM - ozbobwa-118.208.182.144
Enum used in GetFileAttributesEx API
3/16/2007 7:42:09 AM - Kåre Smith-83.108.28.160
Structure used by GetFileAttributesEx API
4/4/2018 11:00:07 PM - ozbobwa-118.208.182.144
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).