The GetFileAttributesEx function obtains attribute information about a specified file or directory.
This function is similar to the GetFileAttributes function. GetFileAttributes returns a set of FAT-style attribute information. GetFileAttributesEx is designed to obtain other sets of file or directory attribute information. Currently, GetFileAttributeEx obtains a set of standard attributes that is a superset of the FAT-style attribute information.
BOOL GetFileAttributesEx(
LPCTSTR lpFileName, |
// pointer to string that specifies a file or directory |
GET_FILEEX_INFO_LEVELS fInfoLevelId, |
// value that specifies the type of attribute information to obtain |
LPVOID lpFileInformation |
// pointer to buffer to receive attribute information |
); |
By default, this string is limited to MAX_PATH characters. The limit is
related to how the GetFileAttributesEx function parses paths. An
application can transcend this limit and send in paths longer than MAX_PATH
characters by calling the wide (W) version of GetFileAttributesEx and
prepending “\\?\” to the path. The
“\\?\” tells the function to turn
off path parsing. This technique also works with UNC names. The “\\?\” is ignored as part of the path. For
example, “\\?\C:\myworld\private”
is seen as “C:\myworld\private”,
and “\\?\UNC\peanuts\hotstuff\coolapps”
is seen as “\\peanuts\hotstuff\coolapps”.
If the function succeeds, the return value is a nonzero value.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
GetFileAttributes, GET_FILEEX_INFO_LEVELS, SetFileAttributes
file: /Techref/os/win/api/win32/func/src/f31_20.htm, 4KB, , updated: 2000/4/7 11:19, local time: 2024/11/7 20:04,
3.140.188.185:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/os/win/api/win32/func/src/f31_20.htm"> GetFileAttributesEx</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.