1 | /* $Id: tstDir-2.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Directory listing & filtering .
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 | #include <iprt/dir.h>
|
---|
38 | #include <iprt/stream.h>
|
---|
39 | #include <iprt/err.h>
|
---|
40 | #include <iprt/initterm.h>
|
---|
41 |
|
---|
42 | int main(int argc, char **argv)
|
---|
43 | {
|
---|
44 | int rcRet = 0;
|
---|
45 | RTR3InitExe(argc, &argv, 0);
|
---|
46 |
|
---|
47 | /*
|
---|
48 | * Iterate arguments.
|
---|
49 | */
|
---|
50 | for (int i = 1; i < argc; i++)
|
---|
51 | {
|
---|
52 | /* open */
|
---|
53 | RTDIR hDir;
|
---|
54 | int rc = RTDirOpenFiltered(&hDir, argv[i], RTDIRFILTER_WINNT, 0 /*fFlags*/);
|
---|
55 | if (RT_SUCCESS(rc))
|
---|
56 | {
|
---|
57 | for (;;)
|
---|
58 | {
|
---|
59 | RTDIRENTRY DirEntry;
|
---|
60 | rc = RTDirRead(hDir, &DirEntry, NULL);
|
---|
61 | if (RT_FAILURE(rc))
|
---|
62 | break;
|
---|
63 | switch (DirEntry.enmType)
|
---|
64 | {
|
---|
65 | case RTDIRENTRYTYPE_UNKNOWN: RTPrintf("u"); break;
|
---|
66 | case RTDIRENTRYTYPE_FIFO: RTPrintf("f"); break;
|
---|
67 | case RTDIRENTRYTYPE_DEV_CHAR: RTPrintf("c"); break;
|
---|
68 | case RTDIRENTRYTYPE_DIRECTORY: RTPrintf("d"); break;
|
---|
69 | case RTDIRENTRYTYPE_DEV_BLOCK: RTPrintf("b"); break;
|
---|
70 | case RTDIRENTRYTYPE_FILE: RTPrintf("-"); break;
|
---|
71 | case RTDIRENTRYTYPE_SYMLINK: RTPrintf("l"); break;
|
---|
72 | case RTDIRENTRYTYPE_SOCKET: RTPrintf("s"); break;
|
---|
73 | case RTDIRENTRYTYPE_WHITEOUT: RTPrintf("w"); break;
|
---|
74 | default:
|
---|
75 | rcRet = 1;
|
---|
76 | RTPrintf("?");
|
---|
77 | break;
|
---|
78 | }
|
---|
79 | RTPrintf(" %#18llx %3d %s\n", (uint64_t)DirEntry.INodeId,
|
---|
80 | DirEntry.cbName, DirEntry.szName);
|
---|
81 | }
|
---|
82 |
|
---|
83 | if (rc != VERR_NO_MORE_FILES)
|
---|
84 | {
|
---|
85 | RTPrintf("tstDir-2: Enumeration failed! rc=%Rrc\n", rc);
|
---|
86 | rcRet = 1;
|
---|
87 | }
|
---|
88 |
|
---|
89 | /* close up */
|
---|
90 | rc = RTDirClose(hDir);
|
---|
91 | if (RT_FAILURE(rc))
|
---|
92 | {
|
---|
93 | RTPrintf("tstDir-2: Failed to close dir! rc=%Rrc\n", rc);
|
---|
94 | rcRet = 1;
|
---|
95 | }
|
---|
96 | }
|
---|
97 | else
|
---|
98 | {
|
---|
99 | RTPrintf("tstDir-2: Failed to open '%s', rc=%Rrc\n", argv[i], rc);
|
---|
100 | rcRet = 1;
|
---|
101 | }
|
---|
102 | }
|
---|
103 |
|
---|
104 | return rcRet;
|
---|
105 | }
|
---|
106 |
|
---|