Changeset 24189 in vbox for trunk/include
- Timestamp:
- Oct 30, 2009 1:41:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r23974 r24189 66 66 */ 67 67 RTDECL(bool) RTFileExists(const char *pszPath); 68 69 /** 70 * Queries the size of a file, given the path to it. 71 * 72 * Symbolic links will be resolved. 73 * 74 * @returns IPRT status code. 75 * @param pszPath The path to the file. 76 * @param pcbFile Where to return the file size (bytes). 77 * 78 * @sa RTFileGetSize, RTPathQueryInfoEx. 79 */ 80 RTDECL(int) RTFileQuerySize(const char *pszPath, uint64_t *pcbFile); 68 81 69 82
Note:
See TracChangeset
for help on using the changeset viewer.