1 | /* $Id: tstMove.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTFileMove & RTDirMove test program.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2020 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/file.h>
|
---|
32 | #include <iprt/path.h>
|
---|
33 | #include <iprt/dir.h>
|
---|
34 | #include <iprt/errcore.h>
|
---|
35 | #include <iprt/initterm.h>
|
---|
36 | #include <iprt/stream.h>
|
---|
37 |
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * Checks if there is one of the typical help options in the argument list.
|
---|
41 | */
|
---|
42 | static bool HasHelpOption(int argc, char **argv)
|
---|
43 | {
|
---|
44 | for (int argi = 1; argi < argc; argi++)
|
---|
45 | if ( argv[argi][0] == '-'
|
---|
46 | && ( argv[argi][1] == 'h'
|
---|
47 | || argv[argi][1] == 'H'
|
---|
48 | || argv[argi][1] == '?'
|
---|
49 | || argv[argi][1] == '-')
|
---|
50 | )
|
---|
51 | return true;
|
---|
52 | return false;
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 | int main(int argc, char **argv)
|
---|
57 | {
|
---|
58 | RTR3InitExe(argc, &argv, 0);
|
---|
59 |
|
---|
60 | /*
|
---|
61 | * Arguments or any -? or --help?
|
---|
62 | */
|
---|
63 | if (argc <= 1 || HasHelpOption(argc, argv))
|
---|
64 | {
|
---|
65 | RTPrintf("usage: tstMove [-efdr] <src> <dst>\n"
|
---|
66 | "\n"
|
---|
67 | " -f File only.\n"
|
---|
68 | " -d Directory only.\n"
|
---|
69 | " -m Use move operation instead of rename. (implies -f)\n"
|
---|
70 | " -r Replace existing destination.\n"
|
---|
71 | );
|
---|
72 | return 1;
|
---|
73 | }
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * Parse args.
|
---|
77 | */
|
---|
78 | const char *pszNew = NULL;
|
---|
79 | const char *pszOld = NULL;
|
---|
80 | bool fDir = false;
|
---|
81 | bool fFile = false;
|
---|
82 | bool fReplace = false;
|
---|
83 | bool fMoveFile = false;
|
---|
84 | for (int argi = 1; argi < argc; argi++)
|
---|
85 | {
|
---|
86 | if (argv[argi][0] == '-')
|
---|
87 | {
|
---|
88 | const char *psz = &argv[argi][1];
|
---|
89 | do
|
---|
90 | {
|
---|
91 | switch (*psz)
|
---|
92 | {
|
---|
93 | case 'd':
|
---|
94 | fDir = true;
|
---|
95 | fMoveFile = false;
|
---|
96 | break;
|
---|
97 | case 'f':
|
---|
98 | fFile = true;
|
---|
99 | break;
|
---|
100 | case 'm':
|
---|
101 | fMoveFile = true;
|
---|
102 | fDir = false;
|
---|
103 | fFile = true;
|
---|
104 | break;
|
---|
105 | case 'r':
|
---|
106 | fReplace = true;
|
---|
107 | break;
|
---|
108 | default:
|
---|
109 | RTPrintf("tstRTFileMove: syntax error: Unknown option '%c' in '%s'!\n", *psz, argv[argi]);
|
---|
110 | return 1;
|
---|
111 | }
|
---|
112 | } while (*++psz);
|
---|
113 | }
|
---|
114 | else if (!pszOld)
|
---|
115 | pszOld = argv[argi];
|
---|
116 | else if (!pszNew)
|
---|
117 | pszNew = argv[argi];
|
---|
118 | else
|
---|
119 | {
|
---|
120 | RTPrintf("tstRTFileMove: syntax error: too many filenames!\n");
|
---|
121 | return 1;
|
---|
122 | }
|
---|
123 | }
|
---|
124 | if (!pszNew || !pszOld)
|
---|
125 | {
|
---|
126 | RTPrintf("tstRTFileMove: syntax error: too few filenames!\n");
|
---|
127 | return 1;
|
---|
128 | }
|
---|
129 |
|
---|
130 | /*
|
---|
131 | * Do the operation.
|
---|
132 | */
|
---|
133 | int rc;
|
---|
134 | if (!fDir && !fFile)
|
---|
135 | rc = RTPathRename(pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0);
|
---|
136 | else if (fDir)
|
---|
137 | rc = RTDirRename( pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0);
|
---|
138 | else if (!fMoveFile)
|
---|
139 | rc = RTFileRename(pszOld, pszNew, fReplace ? RTPATHRENAME_FLAGS_REPLACE : 0);
|
---|
140 | else
|
---|
141 | rc = RTFileMove( pszOld, pszNew, fReplace ? RTFILEMOVE_FLAGS_REPLACE : 0);
|
---|
142 |
|
---|
143 | RTPrintf("The API returned %Rrc\n", rc);
|
---|
144 | return !RT_SUCCESS(rc);
|
---|
145 | }
|
---|
146 |
|
---|