Changeset 937 in vbox for trunk/include
- Timestamp:
- Feb 15, 2007 8:59:20 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r204 r937 108 108 #define RTPATH_IS_SEP(ch) ( RTPATH_IS_SLASH(ch) || RTPATH_IS_VOLSEP(ch) ) 109 109 110 111 /** 112 * Checks if the path exists. 113 * 114 * Symbolic links will all be attempted resolved. 115 * 116 * @returns true if it exists and false if it doesn't. 117 * @param pszPath The path to check. 118 */ 119 RTDECL(bool) RTPathExists(const char *pszPath); 110 120 111 121 /**
Note:
See TracChangeset
for help on using the changeset viewer.