VirtualBox

source: vbox/trunk/include/iprt/path.h@ 25401

Last change on this file since 25401 was 23294, checked in by vboxsync, 15 years ago

iprt/path.h: typo

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.3 KB
Line 
1/** @file
2 * IPRT - Path Manipulation.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___iprt_path_h
31#define ___iprt_path_h
32
33#include <iprt/cdefs.h>
34#include <iprt/types.h>
35#ifdef IN_RING3
36# include <iprt/fs.h>
37#endif
38
39
40
41RT_C_DECLS_BEGIN
42
43/** @defgroup grp_rt_path RTPath - Path Manipulation
44 * @ingroup grp_rt
45 * @{
46 */
47
48
49/** @def RTPATH_SLASH
50 * The preferred slash character.
51 *
52 * @remark IPRT will always accept unix slashes. So, normally you would
53 * never have to use this define.
54 */
55#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
56# define RTPATH_SLASH '\\'
57#else
58# define RTPATH_SLASH '/'
59#endif
60
61/** @deprecated Use '/'! */
62#define RTPATH_DELIMITER RTPATH_SLASH
63
64
65/** @def RTPATH_SLASH_STR
66 * The preferred slash character as a string, handy for concatenations
67 * with other strings.
68 *
69 * @remark IPRT will always accept unix slashes. So, normally you would
70 * never have to use this define.
71 */
72#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
73# define RTPATH_SLASH_STR "\\"
74#else
75# define RTPATH_SLASH_STR "/"
76#endif
77
78
79/** @def RTPATH_IS_SLASH
80 * Checks if a character is a slash.
81 *
82 * @returns true if it's a slash and false if not.
83 * @returns @param ch Char to check.
84 */
85#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
86# define RTPATH_IS_SLASH(ch) ( (ch) == '\\' || (ch) == '/' )
87#else
88# define RTPATH_IS_SLASH(ch) ( (ch) == '/' )
89#endif
90
91
92/** @def RTPATH_IS_VOLSEP
93 * Checks if a character marks the end of the volume specification.
94 *
95 * @remark This is sufficient for the drive letter concept on PC.
96 * However it might be insufficient on other platforms
97 * and even on PC a UNC volume spec won't be detected this way.
98 * Use the RTPath@<too be created@>() instead.
99 *
100 * @returns true if it is and false if it isn't.
101 * @returns @param ch Char to check.
102 */
103#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
104# define RTPATH_IS_VOLSEP(ch) ( (ch) == ':' )
105#else
106# define RTPATH_IS_VOLSEP(ch) (false)
107#endif
108
109
110/** @def RTPATH_IS_SEP
111 * Checks if a character is path component separator
112 *
113 * @returns true if it is and false if it isn't.
114 * @returns @param ch Char to check.
115 * @
116 */
117#define RTPATH_IS_SEP(ch) ( RTPATH_IS_SLASH(ch) || RTPATH_IS_VOLSEP(ch) )
118
119
120/** @name Generic RTPath flags
121 * @{ */
122/** Last component: Work on the link. */
123#define RTPATH_F_ON_LINK RT_BIT_32(0)
124/** Last component: Follow if link. */
125#define RTPATH_F_FOLLOW_LINK RT_BIT_32(1)
126/** @} */
127
128
129/** Validates a flags parameter containing RTPATH_F_*.
130 * @remarks The parameters will be referneced multiple times. */
131#define RTPATH_F_IS_VALID(fFlags, fIgnore) \
132 ( ((fFlags) & ~(uint32_t)(fIgnore)) == RTPATH_F_ON_LINK \
133 || ((fFlags) & ~(uint32_t)(fIgnore)) == RTPATH_F_FOLLOW_LINK )
134
135
136/**
137 * Checks if the path exists.
138 *
139 * Symbolic links will all be attempted resolved and broken links means false.
140 *
141 * @returns true if it exists and false if it doesn't.
142 * @param pszPath The path to check.
143 */
144RTDECL(bool) RTPathExists(const char *pszPath);
145
146/**
147 * Checks if the path exists.
148 *
149 * @returns true if it exists and false if it doesn't.
150 * @param pszPath The path to check.
151 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
152 */
153RTDECL(bool) RTPathExistsEx(const char *pszPath, uint32_t fFlags);
154
155/**
156 * Sets the current working directory of the process.
157 *
158 * @returns IPRT status code.
159 * @param pszPath The path to the new working directory.
160 */
161RTDECL(int) RTPathSetCurrent(const char *pszPath);
162
163/**
164 * Gets the current working directory of the process.
165 *
166 * @returns IPRT status code.
167 * @param pszPath Where to store the path.
168 * @param cchPath The size of the buffer pszPath points to.
169 */
170RTDECL(int) RTPathGetCurrent(char *pszPath, size_t cchPath);
171
172/**
173 * Get the real path (no symlinks, no . or .. components), must exist.
174 *
175 * @returns iprt status code.
176 * @param pszPath The path to resolve.
177 * @param pszRealPath Where to store the real path.
178 * @param cchRealPath Size of the buffer.
179 */
180RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath);
181
182/**
183 * Same as RTPathReal only the result is RTStrDup()'ed.
184 *
185 * @returns Pointer to real path. Use RTStrFree() to free this string.
186 * @returns NULL if RTPathReal() or RTStrDup() fails.
187 * @param pszPath The path to resolve.
188 */
189RTDECL(char *) RTPathRealDup(const char *pszPath);
190
191/**
192 * Get the absolute path (starts from root, no . or .. components), doesn't have
193 * to exist. Note that this method is designed to never perform actual file
194 * system access, therefore symlinks are not resolved.
195 *
196 * @returns iprt status code.
197 * @param pszPath The path to resolve.
198 * @param pszAbsPath Where to store the absolute path.
199 * @param cchAbsPath Size of the buffer.
200 */
201RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath);
202
203/**
204 * Same as RTPathAbs only the result is RTStrDup()'ed.
205 *
206 * @returns Pointer to the absolute path. Use RTStrFree() to free this string.
207 * @returns NULL if RTPathAbs() or RTStrDup() fails.
208 * @param pszPath The path to resolve.
209 */
210RTDECL(char *) RTPathAbsDup(const char *pszPath);
211
212/**
213 * Get the absolute path (no symlinks, no . or .. components), assuming the
214 * given base path as the current directory. The resulting path doesn't have
215 * to exist.
216 *
217 * @returns iprt status code.
218 * @param pszBase The base path to act like a current directory.
219 * When NULL, the actual cwd is used (i.e. the call
220 * is equivalent to RTPathAbs(pszPath, ...).
221 * @param pszPath The path to resolve.
222 * @param pszAbsPath Where to store the absolute path.
223 * @param cchAbsPath Size of the buffer.
224 */
225RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath);
226
227/**
228 * Same as RTPathAbsEx only the result is RTStrDup()'ed.
229 *
230 * @returns Pointer to the absolute path. Use RTStrFree() to free this string.
231 * @returns NULL if RTPathAbsEx() or RTStrDup() fails.
232 * @param pszBase The base path to act like a current directory.
233 * When NULL, the actual cwd is used (i.e. the call
234 * is equivalent to RTPathAbs(pszPath, ...).
235 * @param pszPath The path to resolve.
236 */
237RTDECL(char *) RTPathAbsExDup(const char *pszBase, const char *pszPath);
238
239/**
240 * Strips the filename from a path. Truncates the given string in-place by overwriting the
241 * last path separator character with a null byte in a platform-neutral way.
242 *
243 * @param pszPath Path from which filename should be extracted, will be truncated.
244 * If the string contains no path separator, it will be changed to a "." string.
245 */
246RTDECL(void) RTPathStripFilename(char *pszPath);
247
248/**
249 * Strips the extension from a path.
250 *
251 * @param pszPath Path which extension should be stripped.
252 */
253RTDECL(void) RTPathStripExt(char *pszPath);
254
255/**
256 * Strips the trailing slashes of a path name.
257 *
258 * @param pszPath Path to strip.
259 */
260RTDECL(void) RTPathStripTrailingSlash(char *pszPath);
261
262/**
263 * Parses a path.
264 *
265 * It figures the length of the directory component, the offset of
266 * the file name and the location of the suffix dot.
267 *
268 * @returns The path length.
269 *
270 * @param pszPath Path to find filename in.
271 * @param pcbDir Where to put the length of the directory component.
272 * If no directory, this will be 0. Optional.
273 * @param poffName Where to store the filename offset.
274 * If empty string or if it's ending with a slash this
275 * will be set to -1. Optional.
276 * @param poffSuff Where to store the suffix offset (the last dot).
277 * If empty string or if it's ending with a slash this
278 * will be set to -1. Optional.
279 * @param pfFlags Where to set flags returning more information about
280 * the path. For the future. Optional.
281 */
282RTDECL(size_t) RTPathParse(const char *pszPath, size_t *pcchDir, ssize_t *poffName, ssize_t *poffSuff);
283
284/**
285 * Finds the filename in a path.
286 *
287 * @returns Pointer to filename within pszPath.
288 * @returns NULL if no filename (i.e. empty string or ends with a slash).
289 * @param pszPath Path to find filename in.
290 */
291RTDECL(char *) RTPathFilename(const char *pszPath);
292
293/**
294 * Finds the extension part of in a path.
295 *
296 * @returns Pointer to extension within pszPath.
297 * @returns NULL if no extension.
298 * @param pszPath Path to find extension in.
299 */
300RTDECL(char *) RTPathExt(const char *pszPath);
301
302/**
303 * Checks if a path have an extension.
304 *
305 * @returns true if extension present.
306 * @returns false if no extension.
307 * @param pszPath Path to check.
308 */
309RTDECL(bool) RTPathHaveExt(const char *pszPath);
310
311/**
312 * Checks if a path includes more than a filename.
313 *
314 * @returns true if path present.
315 * @returns false if no path.
316 * @param pszPath Path to check.
317 */
318RTDECL(bool) RTPathHavePath(const char *pszPath);
319
320/**
321 * Compares two paths.
322 *
323 * The comparison takes platform-dependent details into account,
324 * such as:
325 * <ul>
326 * <li>On DOS-like platforms, both separator chars (|\| and |/|) are considered
327 * to be equal.
328 * <li>On platforms with case-insensitive file systems, mismatching characters
329 * are uppercased and compared again.
330 * </ul>
331 *
332 * @returns @< 0 if the first path less than the second path.
333 * @returns 0 if the first path identical to the second path.
334 * @returns @> 0 if the first path greater than the second path.
335 *
336 * @param pszPath1 Path to compare (must be an absolute path).
337 * @param pszPath2 Path to compare (must be an absolute path).
338 *
339 * @remarks File system details are currently ignored. This means that you won't
340 * get case-insentive compares on unix systems when a path goes into a
341 * case-insensitive filesystem like FAT, HPFS, HFS, NTFS, JFS, or
342 * similar. For NT, OS/2 and similar you'll won't get case-sensitve
343 * compares on a case-sensitive file system.
344 */
345RTDECL(int) RTPathCompare(const char *pszPath1, const char *pszPath2);
346
347/**
348 * Checks if a path starts with the given parent path.
349 *
350 * This means that either the path and the parent path matches completely, or
351 * that the path is to some file or directory residing in the tree given by the
352 * parent directory.
353 *
354 * The path comparison takes platform-dependent details into account,
355 * see RTPathCompare() for details.
356 *
357 * @returns |true| when \a pszPath starts with \a pszParentPath (or when they
358 * are identical), or |false| otherwise.
359 *
360 * @param pszPath Path to check, must be an absolute path.
361 * @param pszParentPath Parent path, must be an absolute path.
362 * No trailing directory slash!
363 *
364 * @remarks This API doesn't currently handle root directory compares in a
365 * manner consistant with the other APIs. RTPathStartsWith(pszSomePath,
366 * "/") will not work if pszSomePath isn't "/".
367 */
368RTDECL(bool) RTPathStartsWith(const char *pszPath, const char *pszParentPath);
369
370/**
371 * Appends one partial path to another.
372 *
373 * The main purpose of this function is to deal correctly with the slashes when
374 * concatenating the two partial paths.
375 *
376 * @retval VINF_SUCCESS on success.
377 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
378 * cbPathDst bytes. No changes has been made.
379 * @retval VERR_INVALID_PARAMETER if the string pointed to by pszPath is longer
380 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
381 *
382 * @param pszPath The path to append pszAppend to. This serves as both
383 * input and output. This can be empty, in which case
384 * pszAppend is just copied over.
385 * @param cbPathDst The size of the buffer pszPath points to, terminator
386 * included. This should NOT be strlen(pszPath).
387 * @param pszAppend The partial path to append to pszPath. This can be
388 * NULL, in which case nothing is done.
389 *
390 * @remarks On OS/2, Window and similar systems, concatenating a drive letter
391 * specifier with a slash prefixed path will result in an absolute
392 * path. Meaning, RTPathAppend(strcpy(szBuf, "C:"), sizeof(szBuf),
393 * "/bar") will result in "C:/bar". (This follows directly from the
394 * behavior when pszPath is empty.)
395 *
396 * On the other hand, when joining a drive letter specifier with a
397 * partial path that does not start with a slash, the result is not an
398 * absolute path. Meaning, RTPathAppend(strcpy(szBuf, "C:"),
399 * sizeof(szBuf), "bar") will result in "C:bar".
400 */
401RTDECL(int) RTPathAppend(char *pszPath, size_t cbPathDst, const char *pszAppend);
402
403/**
404 * Callback for RTPathTraverseList that's called for each element.
405 *
406 * @returns IPRT style status code. Return VINF_TRY_AGAIN to continue, any other
407 * value will abort the traversing and be returned to the caller.
408 *
409 * @param pchPath Pointer to the start of the current path. This is
410 * not null terminated.
411 * @param cchPath The length of the path.
412 * @param pvUser1 The first user parameter.
413 * @param pvUser2 The second user parameter.
414 */
415typedef DECLCALLBACK(int) FNRTPATHTRAVERSER(char const *pchPath, size_t cchPath, void *pvUser1, void *pvUser2);
416/** Pointer to a FNRTPATHTRAVERSER. */
417typedef FNRTPATHTRAVERSER *PFNRTPATHTRAVERSER;
418
419/**
420 * Traverses a string that can contain multiple paths separated by a special
421 * character.
422 *
423 * @returns IPRT style status code from the callback or VERR_END_OF_STRING if
424 * the callback returned VINF_TRY_AGAIN for all paths in the string.
425 *
426 * @param pszPathList The string to traverse.
427 * @param chSep The separator character. Using the null terminator
428 * is fine, but the result will simply be that there
429 * will only be one callback for the entire string
430 * (save any leading white space).
431 * @param pfnCallback The callback.
432 * @param pvUser1 First user argument for the callback.
433 * @param pvUser2 Second user argument for the callback.
434 */
435RTDECL(int) RTPathTraverseList(const char *pszPathList, char chSep, PFNRTPATHTRAVERSER pfnCallback, void *pvUser1, void *pvUser2);
436
437
438#ifdef IN_RING3
439
440/**
441 * Gets the path to the directory containing the executable.
442 *
443 * @returns iprt status code.
444 * @param pszPath Buffer where to store the path.
445 * @param cchPath Buffer size in bytes.
446 */
447RTDECL(int) RTPathExecDir(char *pszPath, size_t cchPath);
448
449/**
450 * Gets the user home directory.
451 *
452 * @returns iprt status code.
453 * @param pszPath Buffer where to store the path.
454 * @param cchPath Buffer size in bytes.
455 */
456RTDECL(int) RTPathUserHome(char *pszPath, size_t cchPath);
457
458/**
459 * Gets the directory of shared libraries.
460 *
461 * This is not the same as RTPathAppPrivateArch() as Linux depends all shared
462 * libraries in a common global directory where ld.so can found them.
463 *
464 * Linux: /usr/lib
465 * Windows: @<program files directory@>/@<application@>
466 * Old path: same as RTPathExecDir()
467 *
468 * @returns iprt status code.
469 * @param pszPath Buffer where to store the path.
470 * @param cchPath Buffer size in bytes.
471 */
472RTDECL(int) RTPathSharedLibs(char *pszPath, size_t cchPath);
473
474/**
475 * Gets the directory for architecture-independent application data, for
476 * example NLS files, module sources, ...
477 *
478 * Linux: /usr/shared/@<application@>
479 * Windows: @<program files directory@>/@<application@>
480 * Old path: same as RTPathExecDir()
481 *
482 * @returns iprt status code.
483 * @param pszPath Buffer where to store the path.
484 * @param cchPath Buffer size in bytes.
485 */
486RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, size_t cchPath);
487
488/**
489 * Gets the directory for architecture-dependent application data, for
490 * example modules which can be loaded at runtime.
491 *
492 * Linux: /usr/lib/@<application@>
493 * Windows: @<program files directory@>/@<application@>
494 * Old path: same as RTPathExecDir()
495 *
496 * @returns iprt status code.
497 * @param pszPath Buffer where to store the path.
498 * @param cchPath Buffer size in bytes.
499 */
500RTDECL(int) RTPathAppPrivateArch(char *pszPath, size_t cchPath);
501
502/**
503 * Gets the directory for documentation.
504 *
505 * Linux: /usr/share/doc/@<application@>
506 * Windows: @<program files directory@>/@<application@>
507 * Old path: same as RTPathExecDir()
508 *
509 * @returns iprt status code.
510 * @param pszPath Buffer where to store the path.
511 * @param cchPath Buffer size in bytes.
512 */
513RTDECL(int) RTPathAppDocs(char *pszPath, size_t cchPath);
514
515/**
516 * Gets the temporary directory path.
517 *
518 * @returns iprt status code.
519 * @param pszPath Buffer where to store the path.
520 * @param cchPath Buffer size in bytes.
521 */
522RTDECL(int) RTPathTemp(char *pszPath, size_t cchPath);
523
524/**
525 * Query information about a file system object.
526 *
527 * This API will resolve NOT symbolic links in the last component (just like
528 * unix lstat()).
529 *
530 * @returns IPRT status code.
531 * @retval VINF_SUCCESS if the object exists, information returned.
532 * @retval VERR_PATH_NOT_FOUND if any but the last component in the specified
533 * path was not found or was not a directory.
534 * @retval VERR_FILE_NOT_FOUND if the object does not exist (but path to the
535 * parent directory exists).
536 *
537 * @param pszPath Path to the file system object.
538 * @param pObjInfo Object information structure to be filled on successful return.
539 * @param enmAdditionalAttribs
540 * Which set of additional attributes to request.
541 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
542 */
543RTR3DECL(int) RTPathQueryInfo(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
544
545/**
546 * Query information about a file system object.
547 *
548 * @returns IPRT status code.
549 * @retval VINF_SUCCESS if the object exists, information returned.
550 * @retval VERR_PATH_NOT_FOUND if any but the last component in the specified
551 * path was not found or was not a directory.
552 * @retval VERR_FILE_NOT_FOUND if the object does not exist (but path to the
553 * parent directory exists).
554 *
555 * @param pszPath Path to the file system object.
556 * @param pObjInfo Object information structure to be filled on successful return.
557 * @param enmAdditionalAttribs
558 * Which set of additional attributes to request.
559 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
560 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
561 */
562RTR3DECL(int) RTPathQueryInfoEx(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
563
564/**
565 * Changes the mode flags of a file system object.
566 *
567 * The API requires at least one of the mode flag sets (Unix/Dos) to
568 * be set. The type is ignored.
569 *
570 * This API will resolve symbolic links in the last component since
571 * mode isn't important for symbolic links.
572 *
573 * @returns iprt status code.
574 * @param pszPath Path to the file system object.
575 * @param fMode The new file mode, see @ref grp_rt_fs for details.
576 */
577RTR3DECL(int) RTPathSetMode(const char *pszPath, RTFMODE fMode);
578
579/**
580 * Gets the mode flags of a file system object.
581 *
582 * @returns iprt status code.
583 * @param pszPath Path to the file system object.
584 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
585 *
586 * @remark This is wrapper around RTPathReal() + RTPathQueryInfo()
587 * and exists to complement RTPathSetMode().
588 */
589RTR3DECL(int) RTPathGetMode(const char *pszPath, PRTFMODE pfMode);
590
591/**
592 * Changes one or more of the timestamps associated of file system object.
593 *
594 * This API will not resolve symbolic links in the last component (just
595 * like unix lutimes()).
596 *
597 * @returns iprt status code.
598 * @param pszPath Path to the file system object.
599 * @param pAccessTime Pointer to the new access time.
600 * @param pModificationTime Pointer to the new modification time.
601 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
602 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
603 *
604 * @remark The file system might not implement all these time attributes,
605 * the API will ignore the ones which aren't supported.
606 *
607 * @remark The file system might not implement the time resolution
608 * employed by this interface, the time will be chopped to fit.
609 *
610 * @remark The file system may update the change time even if it's
611 * not specified.
612 *
613 * @remark POSIX can only set Access & Modification and will always set both.
614 */
615RTR3DECL(int) RTPathSetTimes(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
616 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
617
618/**
619 * Changes one or more of the timestamps associated of file system object.
620 *
621 * @returns iprt status code.
622 * @param pszPath Path to the file system object.
623 * @param pAccessTime Pointer to the new access time.
624 * @param pModificationTime Pointer to the new modification time.
625 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
626 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
627 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
628 *
629 * @remark The file system might not implement all these time attributes,
630 * the API will ignore the ones which aren't supported.
631 *
632 * @remark The file system might not implement the time resolution
633 * employed by this interface, the time will be chopped to fit.
634 *
635 * @remark The file system may update the change time even if it's
636 * not specified.
637 *
638 * @remark POSIX can only set Access & Modification and will always set both.
639 */
640RTR3DECL(int) RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
641 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime, uint32_t fFlags);
642
643/**
644 * Gets one or more of the timestamps associated of file system object.
645 *
646 * @returns iprt status code.
647 * @param pszPath Path to the file system object.
648 * @param pAccessTime Where to store the access time. NULL is ok.
649 * @param pModificationTime Where to store the modification time. NULL is ok.
650 * @param pChangeTime Where to store the change time. NULL is ok.
651 * @param pBirthTime Where to store the creation time. NULL is ok.
652 *
653 * @remark This is wrapper around RTPathQueryInfo() and exists to complement
654 * RTPathSetTimes(). If the last component is a symbolic link, it will
655 * not be resolved.
656 */
657RTR3DECL(int) RTPathGetTimes(const char *pszPath, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
658 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
659
660/**
661 * Changes the owner and/or group of a file system object.
662 *
663 * This API will not resolve symbolic links in the last component (just
664 * like unix lchown()).
665 *
666 * @returns iprt status code.
667 * @param pszPath Path to the file system object.
668 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
669 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
670 */
671RTR3DECL(int) RTPathSetOwner(const char *pszPath, uint32_t uid, uint32_t gid);
672
673/**
674 * Changes the owner and/or group of a file system object.
675 *
676 * @returns iprt status code.
677 * @param pszPath Path to the file system object.
678 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
679 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
680 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
681 */
682RTR3DECL(int) RTPathSetOwnerEx(const char *pszPath, uint32_t uid, uint32_t gid, uint32_t fFlags);
683
684/**
685 * Gets the owner and/or group of a file system object.
686 *
687 * @returns iprt status code.
688 * @param pszPath Path to the file system object.
689 * @param pUid Where to store the owner user id. NULL is ok.
690 * @param pGid Where to store the group id. NULL is ok.
691 *
692 * @remark This is wrapper around RTPathQueryInfo() and exists to complement
693 * RTPathGetOwner(). If the last component is a symbolic link, it will
694 * not be resolved.
695 */
696RTR3DECL(int) RTPathGetOwner(const char *pszPath, uint32_t *pUid, uint32_t *pGid);
697
698
699/** @name RTPathRename, RTDirRename & RTFileRename flags.
700 * @{ */
701/** This will replace attempt any target which isn't a directory. */
702#define RTPATHRENAME_FLAGS_REPLACE RT_BIT(0)
703/** @} */
704
705/**
706 * Renames a path within a filesystem.
707 *
708 * This will rename symbolic links. If RTPATHRENAME_FLAGS_REPLACE is used and
709 * pszDst is a symbolic link, it will be replaced and not its target.
710 *
711 * @returns IPRT status code.
712 * @param pszSrc The source path.
713 * @param pszDst The destination path.
714 * @param fRename Rename flags, RTPATHRENAME_FLAGS_*.
715 */
716RTR3DECL(int) RTPathRename(const char *pszSrc, const char *pszDst, unsigned fRename);
717
718#endif /* IN_RING3 */
719
720/** @} */
721
722RT_C_DECLS_END
723
724#endif
725
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette