blob: adc9440d2571af259b895fd68c7ae7547f5ddba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<html>
<head>
<title>ftp Library Package 2.1 for Tcl/Tk help file</title>
</head>
<body bgcolor="#ffffff" text="#000000">
<body>
<p>
<dl>
<dd>
<p><font face="Arial,Helvetica" color="#526e9c" size="+2"><b>ftp Library Package 2.1 for Tcl/Tk Manual Pages</b></font></p>
</dd>
<dd><font face="Arial,Helvetica" size="+1"><b>COMMAND</b></font></dd>
<dd><dl>
<dd><b>ftp::Rename</b><em> handle from to</em></dd>
<dd> </dd>
<dd>
The <b>ftp::Rename</b> command renames the file in the current
directory of the ftp server with the specified file name <em>from</em>
to the specified new file name <em>to</em>. This new file name cannot
be the same as any existing subdirectory or file name.
<p>The command returns 1 if the specified file can be successfully
renamed or 0 if it fails.</p>
</dd>
</dl></dd>
<dd><font face="Arial,Helvetica" size="+1"><b>EXAMPLE</b></font></dd>
<dd><dl>
<dd>
<pre># rename file
ftp::Rename $conn index.htm index.htm.org
# with fully qualified path name
ftp::Rename $conn /usr/htdocs/index.htm /usr/htdocs/index.htm.org
</pre>
</dd>
</dl></dd>
</dl>
</p>
<p>
[<a href="index.html">Contents</a>]
[<b>Previous:</b> <a href="fhelp10.html">ftp::Delete</a>]
[<b>Next:</b> <a href="fhelp12.html">ftp::Put</a>]
</p>
<p align="left"><hr noshade size="1"><font face="Arial,Helvetica" size="-1">© 1999 <a href="mailto:Steffen.Traeger@t-online.de">Steffen Traeger</a></font></p>
</body>
</html>
|