6047
|
1 ## Copyright (C) 2005 John W. Eaton |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
|
19 |
|
20 ## -*- texinfo -*- |
6152
|
21 ## @deftypefn {Function File} {[@var{status}, @var{msg}, @var{msgid}] =} copyfile (@var{f1}, @var{f2}, @var{force}) |
|
22 ## Copy the file @var{f1} to the new name @var{f2}. The name @var{f1} |
6047
|
23 ## may contain globbing patterns. If @var{f1} expands to multiple file |
6152
|
24 ## names, @var{f2} must be a directory. If @var{force} is given and equals |
|
25 ## the string "f" the copy operation will be forced. |
6047
|
26 ## |
|
27 ## If successful, @var{status} is 1, with @var{msg} and @var{msgid} empty\n\ |
|
28 ## character strings. Otherwise, @var{status} is 0, @var{msg} contains a\n\ |
|
29 ## system-dependent error message, and @var{msgid} contains a unique\n\ |
|
30 ## message identifier.\n\ |
6152
|
31 ## @seealso{glob, movefile} |
6047
|
32 ## @end deftypefn |
|
33 |
|
34 function [status, msg, msgid] = copyfile (f1, f2, force) |
|
35 |
|
36 status = true; |
|
37 msg = ""; |
|
38 msgid = ""; |
|
39 |
6210
|
40 ## FIXME -- maybe use the same method as in ls to allow users control |
|
41 ## over the command that is executed. |
|
42 |
6645
|
43 if (ispc () && ! isunix () && isempty (file_in_path (EXEC_PATH, "cp.exe"))) |
6233
|
44 ## Windows. |
6210
|
45 cmd = "cmd /C xcopy /E"; |
|
46 cmd_force_flag = "/Y"; |
|
47 else |
|
48 cmd = "cp -r"; |
|
49 cmd_force_flag = "-f"; |
|
50 endif |
|
51 |
6047
|
52 if (nargin == 2 || nargin == 3) |
6233
|
53 ## Input type check. |
|
54 if (! (ischar (f1) || iscellstr (f1))) |
|
55 error ("copyfile: first argument must be a character string or a cell array of character strings"); |
|
56 endif |
|
57 |
|
58 if (! ischar (f2)) |
|
59 error ("copyfile: second argument must be a character string"); |
|
60 endif |
|
61 |
6047
|
62 if (nargin == 3 && strcmp (force, "f")) |
6210
|
63 cmd = strcat (cmd, " ", cmd_force_flag); |
6047
|
64 endif |
6069
|
65 |
6233
|
66 ## If f1 isn't a cellstr convert it to one. |
|
67 if (ischar (f1)) |
|
68 f1 = cellstr (f1); |
6069
|
69 endif |
6233
|
70 |
|
71 ## Protect the file name(s). |
|
72 f1 = glob (f1); |
|
73 f1 = sprintf ("\"%s\" ", f1{:}); |
6069
|
74 |
6398
|
75 f2 = tilde_expand (f2); |
6645
|
76 |
|
77 if (ispc () && ! isunix () && ! isempty (file_in_path (EXEC_PATH, "cp.exe"))) |
|
78 f1 = strrep (f1, "\\", "/"); |
|
79 f2 = strrep (f2, "\\", "/"); |
|
80 endif |
6398
|
81 |
6233
|
82 ## Copy the files. |
6069
|
83 [err, msg] = system (sprintf ("%s %s \"%s\"", cmd, f1, f2)); |
6047
|
84 if (err < 0) |
|
85 status = false; |
|
86 msgid = "copyfile"; |
|
87 endif |
|
88 else |
|
89 print_usage (); |
|
90 endif |
|
91 |
|
92 endfunction |