Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Re: Re: Re: Need help deleting IQ Folders

by Anonymous Monk
on Feb 04, 2004 at 21:24 UTC ( [id://326602]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Need help deleting IQ Folders
in thread Need help deleting IQ Folders

I was trying that previously but it did not work. Maybe b/c of the way these IQs are named?
{RTI3420-EWD923E-RTER4-T4R3}
  • Comment on Re: Re: Re: Re: Need help deleting IQ Folders

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Need help deleting IQ Folders
by valentin (Abbot) on Feb 04, 2004 at 22:12 UTC
    I do not think that the name is the reason. Perhaps you have not the right permissions, or you ftpserver does not allow rmdir at all. this should help to find the reason.
    #!/usr/bin/perl use Net::FTP; my $host = 'my.host.com'; my $login = 'login'; my $passwd = 'mypasswd'; my $ftp = Net::FTP->new( $host, Debug => 1) or die "Cannot connect $@"; $ftp->login($login, $passwd) or die "Cannot login ", $ftp->message; $ftp->cwd('your_dir') or die "Cannot change working directory ", $ftp->message; $ftp->rmdir('your_dir', 1) or die $@;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://326602]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-24 04:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found