FTP Library Package 1.1 for Tcl/Tk Manual Pages
# delete file
if {![FTP::Delete index.htm]} {
puts "File couldn't be deleted!"
}
# delete all like "rm *"
foreach file [FTP::NList] {
FTP::Delete $file
}
[Contents] [Previous: FTP::ModTime] [Next: FTP::Rename]