diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:39:39 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:39:39 (GMT) |
commit | ea28451286d3ea4a772fa174483f9a7a66bb1ab3 (patch) | |
tree | 6ee9d8a7848333a7ceeee3b13d492e40225f8b86 /tcllib/modules/ftp/docs/fhelp10.html | |
parent | b5ca09bae0d6a1edce939eea03594dd56383f2c8 (diff) | |
parent | 7c621da28f07e449ad90c387344f07a453927569 (diff) | |
download | blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.zip blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.tar.gz blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.tar.bz2 |
Merge commit '7c621da28f07e449ad90c387344f07a453927569' as 'tcllib'
Diffstat (limited to 'tcllib/modules/ftp/docs/fhelp10.html')
-rw-r--r-- | tcllib/modules/ftp/docs/fhelp10.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tcllib/modules/ftp/docs/fhelp10.html b/tcllib/modules/ftp/docs/fhelp10.html new file mode 100644 index 0000000..f1425a8 --- /dev/null +++ b/tcllib/modules/ftp/docs/fhelp10.html @@ -0,0 +1,54 @@ +<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::Delete</b><em> handle file</em></dd> + <dd> </dd> + <dd> + + The <b>ftp::Delete</b> command deletes the specified file on the ftp + server. The command returns 1 if the specified file can be + successfully deleted 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># delete file +if {![ftp::Delete $conn index.htm]} { + puts "File couldn't be deleted!" +} + +# delete all like "rm *" +foreach file [ftp::NList $conn] { + ftp::Delete $conn $file +} + </pre> + + </dd> + </dl></dd> +</dl> +</p> +<p> +[<a href="index.html">Contents</a>] +[<b>Previous:</b> <a href="fhelp9.html">ftp::ModTime</a>] +[<b>Next:</b> <a href="fhelp11.html">ftp::Rename</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> |