in reply to Re: Net::FTP file type and attributes
in thread Net::FTP file type and attributes
Worked for me. Let me let me know if there is a better way.sub is_dir { + my @list = split(//, $_); if( $list[0] eq 'd' ) { return 1; } else { return 0; } + }
|
|---|