[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Check ftp dir

lorenzo

7/1/2006 5:59:00 PM

I'd like to know the better way for check if item 'file' is a directory
or file:
@files = Array.new()
for file in ftp.list
@files.push file.split()
end
Must I check the differents between ftp.list and ftp.nlst?

Thank all