Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FTP

Status
Not open for further replies.

drkestrel

MIS
Sep 25, 2000
439
GB
Is there a way in NET::FTP to do mget (i.e. getting multiple files meeting certain criteria? e.g.
Code:
mget *.txt
)?
 
There's nothing in the man pages for NET::FTP that would
imply such a function, and i don't know of any. you could
do a foreach over a "$ftp->ls" , with an
"if ($_ =~ m~\.txt$~)" in it, which would function the same. "If you think you're too small to make a difference, try spending a night in a closed tent with a mosquito."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top