VirtualBox

source: vbox/trunk/include/iprt/dir.h@ 33801

Last change on this file since 33801 was 33801, checked in by vboxsync, 14 years ago

iprt/dir.h: Added RTDIRRMREC_F_CONTENT_AND_DIR (0) to make RTDirRemoveRecursive calls easier to read.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.7 KB
Line 
1/** @file
2 * IPRT - Directory Manipulation.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Oracle Corporation
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
26#ifndef ___iprt_dir_h
27#define ___iprt_dir_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#ifdef IN_RING3
32# include <iprt/fs.h>
33#endif
34
35
36RT_C_DECLS_BEGIN
37
38/** @defgroup grp_rt_dir RTDir - Directory Manipulation
39 * @ingroup grp_rt
40 * @{
41 */
42
43#ifdef IN_RING3
44
45/**
46 * Check for the existence of a directory.
47 *
48 * All symbolic links will be attemped resolved. If that is undesirable, please
49 * use RTPathQueryInfo instead.
50 *
51 * @returns true if exist and is a directory.
52 * @returns false if not exists or isn't a directory.
53 * @param pszPath Path to the directory.
54 */
55RTDECL(bool) RTDirExists(const char *pszPath);
56
57/**
58 * Creates a directory.
59 *
60 * @returns iprt status code.
61 * @param pszPath Path to the directory to create.
62 * @param fMode The mode of the new directory.
63 */
64RTDECL(int) RTDirCreate(const char *pszPath, RTFMODE fMode);
65
66/**
67 * Creates a directory including all parent directories in the path
68 * if they don't exist.
69 *
70 * @returns iprt status code.
71 * @param pszPath Path to the directory to create.
72 * @param fMode The mode of the new directories.
73 */
74RTDECL(int) RTDirCreateFullPath(const char *pszPath, RTFMODE fMode);
75
76/**
77 * Creates a new directory with a unique name using the given template.
78 *
79 * One or more trailing X'es in the template will be replaced by random alpha
80 * numeric characters until a RTDirCreate succeeds or we run out of patience.
81 * For instance:
82 * "/tmp/myprog-XXXXXX"
83 *
84 * As an alternative to trailing X'es, it
85 * is possible to put 3 or more X'es somewhere inside the directory name. In
86 * the following string only the last bunch of X'es will be modified:
87 * "/tmp/myprog-XXX-XXX.tmp"
88 *
89 * The directory is created with mode 0700.
90 *
91 * @returns iprt status code.
92 * @param pszTemplate The directory name template on input. The actual
93 * directory name on success. Empty string on failure.
94 */
95RTDECL(int) RTDirCreateTemp(char *pszTemplate);
96
97/**
98 * Removes a directory if empty.
99 *
100 * @returns iprt status code.
101 * @param pszPath Path to the directory to remove.
102 */
103RTDECL(int) RTDirRemove(const char *pszPath);
104
105/**
106 * Removes a directory tree recursively.
107 *
108 * @returns iprt status code.
109 * @param pszPath Path to the directory to remove recursively.
110 * @param fFlags Flags, see RTDIRRMREC_F_XXX.
111 *
112 * @remarks This will not work on a root directory.
113 */
114RTDECL(int) RTDirRemoveRecursive(const char *pszPath, uint32_t fFlags);
115
116/** @name RTDirRemoveRecursive flags.
117 * @{ */
118/** Delete the content of the directory and the directory itself. */
119#define RTDIRRMREC_F_CONTENT_AND_DIR UINT32_C(0)
120/** Only delete the content of the directory, omit the directory it self. */
121#define RTDIRRMREC_F_CONTENT_ONLY RT_BIT_32(0)
122/** Mask of valid flags. */
123#define RTDIRRMREC_F_VALID_MASK UINT32_C(0x00000001)
124/** @} */
125
126/**
127 * Flushes the specified directory.
128 *
129 * This API is not implemented on all systems. On some systems it may be
130 * unnecessary if you've already flushed the file. If you really care for your
131 * data and is entering dangerous territories, it doesn't hurt calling it after
132 * flushing and closing the file.
133 *
134 * @returns IPRT status code.
135 * @retval VERR_NOT_IMPLEMENTED must be expected.
136 * @retval VERR_NOT_SUPPORTED must be expected.
137 * @param pszPath Path to the directory.
138 */
139RTDECL(int) RTDirFlush(const char *pszPath);
140
141/**
142 * Flushes the parent directory of the specified file.
143 *
144 * This is just a wrapper around RTDirFlush.
145 *
146 * @returns IPRT status code, see RTDirFlush for details.
147 * @param pszChild Path to the file which parent should be flushed.
148 */
149RTDECL(int) RTDirFlushParent(const char *pszChild);
150
151
152/** Pointer to an open directory (sort of handle). */
153typedef struct RTDIR *PRTDIR;
154
155
156/**
157 * Filter option for RTDirOpenFiltered().
158 */
159typedef enum RTDIRFILTER
160{
161 /** The usual invalid 0 entry. */
162 RTDIRFILTER_INVALID = 0,
163 /** No filter should be applied (and none was specified). */
164 RTDIRFILTER_NONE,
165 /** The Windows NT filter.
166 * The following wildcard chars: *, ?, <, > and "
167 * The matching is done on the uppercased strings. */
168 RTDIRFILTER_WINNT,
169 /** The UNIX filter.
170 * The following wildcard chars: *, ?, [..]
171 * The matching is done on exact case. */
172 RTDIRFILTER_UNIX,
173 /** The UNIX filter, uppercased matching.
174 * Same as RTDIRFILTER_UNIX except that the strings are uppercased before comparing. */
175 RTDIRFILTER_UNIX_UPCASED,
176
177 /** The usual full 32-bit value. */
178 RTDIRFILTER_32BIT_HACK = 0x7fffffff
179} RTDIRFILTER;
180
181
182/**
183 * Directory entry type.
184 *
185 * This is the RTFS_TYPE_MASK stuff shifted down 12 bits and
186 * identical to the BSD/LINUX ABI.
187 */
188typedef enum RTDIRENTRYTYPE
189{
190 /** Unknown type (DT_UNKNOWN). */
191 RTDIRENTRYTYPE_UNKNOWN = 0,
192 /** Named pipe (fifo) (DT_FIFO). */
193 RTDIRENTRYTYPE_FIFO = 001,
194 /** Character device (DT_CHR). */
195 RTDIRENTRYTYPE_DEV_CHAR = 002,
196 /** Directory (DT_DIR). */
197 RTDIRENTRYTYPE_DIRECTORY = 004,
198 /** Block device (DT_BLK). */
199 RTDIRENTRYTYPE_DEV_BLOCK = 006,
200 /** Regular file (DT_REG). */
201 RTDIRENTRYTYPE_FILE = 010,
202 /** Symbolic link (DT_LNK). */
203 RTDIRENTRYTYPE_SYMLINK = 012,
204 /** Socket (DT_SOCK). */
205 RTDIRENTRYTYPE_SOCKET = 014,
206 /** Whiteout (DT_WHT). */
207 RTDIRENTRYTYPE_WHITEOUT = 016
208} RTDIRENTRYTYPE;
209
210
211/**
212 * Directory entry.
213 *
214 * This is inspired by the POSIX interfaces.
215 */
216#pragma pack(1)
217typedef struct RTDIRENTRY
218{
219 /** The unique identifier (within the file system) of this file system object (d_ino).
220 *
221 * Together with INodeIdDevice, this field can be used as a OS wide unique id
222 * when both their values are not 0. This field is 0 if the information is not
223 * available. */
224 RTINODE INodeId;
225 /** The entry type. (d_type)
226 * RTDIRENTRYTYPE_UNKNOWN is a common return value here since not all file
227 * systems (or Unixes) stores the type of a directory entry and instead
228 * expects the user to use stat() to get it. So, when you see this you
229 * should use RTPathQueryInfo to get the type, or if if you're lazy, use
230 * RTDirReadEx. */
231 RTDIRENTRYTYPE enmType;
232 /** The length of the filename, excluding the terminating nul character. */
233 uint16_t cbName;
234 /** The filename. (no path)
235 * Using the pcbDirEntry parameter of RTDirRead makes this field variable in size. */
236 char szName[260];
237} RTDIRENTRY;
238#pragma pack()
239/** Pointer to a directory entry. */
240typedef RTDIRENTRY *PRTDIRENTRY;
241
242
243/**
244 * Directory entry with extended information.
245 *
246 * This is inspired by the PC interfaces.
247 */
248#pragma pack(1)
249typedef struct RTDIRENTRYEX
250{
251 /** Full information about the object. */
252 RTFSOBJINFO Info;
253 /** The length of the short field (number of RTUTF16 entries (not chars)).
254 * It is 16-bit for reasons of alignment. */
255 uint16_t cwcShortName;
256 /** The short name for 8.3 compatibility.
257 * Empty string if not available.
258 * Since the length is a bit tricky for a UTF-8 encoded name, and since this
259 * is practically speaking only a windows thing, it is encoded as UCS-2. */
260 RTUTF16 wszShortName[14];
261 /** The length of the filename. */
262 uint16_t cbName;
263 /** The filename. (no path)
264 * Using the pcbDirEntry parameter of RTDirReadEx makes this field variable in size. */
265 char szName[260];
266} RTDIRENTRYEX;
267#pragma pack()
268/** Pointer to a directory entry. */
269typedef RTDIRENTRYEX *PRTDIRENTRYEX;
270
271
272/**
273 * Opens a directory.
274 *
275 * @returns iprt status code.
276 * @param ppDir Where to store the open directory pointer.
277 * @param pszPath Path to the directory to open.
278 */
279RTDECL(int) RTDirOpen(PRTDIR *ppDir, const char *pszPath);
280
281/**
282 * Opens a directory filtering the entries using dos style wildcards.
283 *
284 * @returns iprt status code.
285 * @param ppDir Where to store the open directory pointer.
286 * @param pszPath Path to the directory to search, this must include wildcards.
287 * @param enmFilter The kind of filter to apply. Setting this to RTDIRFILTER_NONE makes
288 * this function behave like RTDirOpen.
289 */
290RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter);
291
292/**
293 * Closes a directory.
294 *
295 * @returns iprt status code.
296 * @param pDir Pointer to open directory returned by RTDirOpen() or RTDirOpenFiltered().
297 */
298RTDECL(int) RTDirClose(PRTDIR pDir);
299
300/**
301 * Reads the next entry in the directory.
302 *
303 * @returns VINF_SUCCESS and data in pDirEntry on success.
304 * @returns VERR_NO_MORE_FILES when the end of the directory has been reached.
305 * @returns VERR_BUFFER_OVERFLOW if the buffer is too small to contain the filename. If
306 * pcbDirEntry is specified it will be updated with the required buffer size.
307 * @returns suitable iprt status code on other errors.
308 *
309 * @param pDir Pointer to the open directory.
310 * @param pDirEntry Where to store the information about the next
311 * directory entry on success.
312 * @param pcbDirEntry Optional parameter used for variable buffer size.
313 *
314 * On input the variable pointed to contains the size of the pDirEntry
315 * structure. This must be at least OFFSET(RTDIRENTRY, szName[2]) bytes.
316 *
317 * On successful output the field is updated to
318 * OFFSET(RTDIRENTRY, szName[pDirEntry->cbName + 1]).
319 *
320 * When the data doesn't fit in the buffer and VERR_BUFFER_OVERFLOW is
321 * returned, this field contains the required buffer size.
322 *
323 * The value is unchanged in all other cases.
324 */
325RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry);
326
327/**
328 * Reads the next entry in the directory returning extended information.
329 *
330 * @returns VINF_SUCCESS and data in pDirEntry on success.
331 * @returns VERR_NO_MORE_FILES when the end of the directory has been reached.
332 * @returns VERR_BUFFER_OVERFLOW if the buffer is too small to contain the filename. If
333 * pcbDirEntry is specified it will be updated with the required buffer size.
334 * @returns suitable iprt status code on other errors.
335 *
336 * @param pDir Pointer to the open directory.
337 * @param pDirEntry Where to store the information about the next
338 * directory entry on success.
339 * @param pcbDirEntry Optional parameter used for variable buffer size.
340 *
341 * On input the variable pointed to contains the size of the pDirEntry
342 * structure. This must be at least OFFSET(RTDIRENTRYEX, szName[2]) bytes.
343 *
344 * On successful output the field is updated to
345 * OFFSET(RTDIRENTRYEX, szName[pDirEntry->cbName + 1]).
346 *
347 * When the data doesn't fit in the buffer and VERR_BUFFER_OVERFLOW is
348 * returned, this field contains the required buffer size.
349 *
350 * The value is unchanged in all other cases.
351 * @param enmAdditionalAttribs
352 * Which set of additional attributes to request.
353 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
354 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
355 */
356RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
357
358
359/**
360 * Renames a file.
361 *
362 * Identical to RTPathRename except that it will ensure that the source is a directory.
363 *
364 * @returns IPRT status code.
365 * @returns VERR_ALREADY_EXISTS if the destination file exists.
366 *
367 * @param pszSrc The path to the source file.
368 * @param pszDst The path to the destination file.
369 * This file will be created.
370 * @param fRename See RTPathRename.
371 */
372RTDECL(int) RTDirRename(const char *pszSrc, const char *pszDst, unsigned fRename);
373
374
375/**
376 * Query information about an open directory.
377 *
378 * @returns iprt status code.
379 *
380 * @param pDir Pointer to the open directory.
381 * @param pObjInfo Object information structure to be filled on successful return.
382 * @param enmAdditionalAttribs Which set of additional attributes to request.
383 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
384 */
385RTR3DECL(int) RTDirQueryInfo(PRTDIR pDir, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
386
387
388/**
389 * Changes one or more of the timestamps associated of file system object.
390 *
391 * @returns iprt status code.
392 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS.
393 *
394 * @param pDir Pointer to the open directory.
395 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
396 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
397 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
398 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
399 *
400 * @remark The file system might not implement all these time attributes,
401 * the API will ignore the ones which aren't supported.
402 *
403 * @remark The file system might not implement the time resolution
404 * employed by this interface, the time will be chopped to fit.
405 *
406 * @remark The file system may update the change time even if it's
407 * not specified.
408 *
409 * @remark POSIX can only set Access & Modification and will always set both.
410 */
411RTR3DECL(int) RTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
412 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
413
414#endif /* IN_RING3 */
415/** @} */
416
417RT_C_DECLS_END
418
419#endif
420
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