Changeset 39612 in vbox for trunk/include/iprt/dir.h
- Timestamp:
- Dec 14, 2011 2:19:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dir.h
r36579 r39612 51 51 RTDECL(bool) RTDirExists(const char *pszPath); 52 52 53 /** @name RTDirCreate flags. 54 * @{ */ 55 /** Don't allow symbolic links as part of the path. */ 56 #define RTDIRCREATE_FLAGS_NO_SYMLINKS RT_BIT(0) 57 /** @} */ 58 53 59 /** 54 60 * Creates a directory. … … 57 63 * @param pszPath Path to the directory to create. 58 64 * @param fMode The mode of the new directory. 59 */ 60 RTDECL(int) RTDirCreate(const char *pszPath, RTFMODE fMode); 65 * @param fCreate Create flags, RTDIRCREATE_FLAGS_*. 66 */ 67 RTDECL(int) RTDirCreate(const char *pszPath, RTFMODE fMode, uint32_t fCreate); 61 68 62 69 /** … … 295 302 RTDECL(int) RTDirOpen(PRTDIR *ppDir, const char *pszPath); 296 303 304 /** @name RTDirOpenFiltered flags. 305 * @{ */ 306 /** Don't allow symbolic links as part of the path. */ 307 #define RTDIROPENFILTERED_FLAGS_NO_SYMLINKS RT_BIT(0) 308 /** @} */ 309 297 310 /** 298 311 * Opens a directory filtering the entries using dos style wildcards. … … 303 316 * @param enmFilter The kind of filter to apply. Setting this to RTDIRFILTER_NONE makes 304 317 * this function behave like RTDirOpen. 305 */ 306 RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter); 318 * @param fOpen Open flags, RTDIROPENFILTERED_FLAGS_*. 319 */ 320 RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fOpen); 307 321 308 322 /**
Note:
See TracChangeset
for help on using the changeset viewer.