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 12:19, local time: 2025/5/3 07:34,
3.145.57.4:LOG IN
|
©2025 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://www.piclist.com/tecHREF/os/win/api/win32/func/src/f31_20.htm"> GetFileAttributesEx</A> |
Did you find what you needed? |
![]() o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
The Backwoods Guide to Computer Lingo |
.