Changeset 23294 in vbox
- Timestamp:
- Sep 24, 2009 4:27:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r23291 r23294 149 149 * @returns true if it exists and false if it doesn't. 150 150 * @param pszPath The path to check. 151 * @param fFlags RTPATH_F_ON_LINK or R PATH_F_FOLLOW_LINK.151 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK. 152 152 */ 153 153 RTDECL(bool) RTPathExistsEx(const char *pszPath, uint32_t fFlags); … … 558 558 * Which set of additional attributes to request. 559 559 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter. 560 * @param fFlags RTPATH_F_ON_LINK or R PATH_F_FOLLOW_LINK.560 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK. 561 561 */ 562 562 RTR3DECL(int) RTPathQueryInfoEx(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags); … … 625 625 * @param pChangeTime Pointer to the new change time. NULL if not to be changed. 626 626 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed. 627 * @param fFlags RTPATH_F_ON_LINK or R PATH_F_FOLLOW_LINK.627 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK. 628 628 * 629 629 * @remark The file system might not implement all these time attributes, … … 678 678 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged. 679 679 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged. 680 * @param fFlags RTPATH_F_ON_LINK or R PATH_F_FOLLOW_LINK.680 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK. 681 681 */ 682 682 RTR3DECL(int) RTPathSetOwnerEx(const char *pszPath, uint32_t uid, uint32_t gid, uint32_t fFlags);
Note:
See TracChangeset
for help on using the changeset viewer.