0.04
Low commit activity in last 3 years
No release in over a year
Parse FTP LIST command output.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme
= Net::Ftp::List

== DESCRIPTION

Ruby lib to parse FTP LIST responses.

According to the FTP RFC the LIST command "information on a file may vary widely from system to system, this
information may be hard to use automatically in a program, but may be quite useful to a human user".
Unfortunately the NLST command "intended to return information that can be used by a program to further process
the files automatically" only returns the filename and no other information. If you want to know to know even
simple things like 'is the NLST entry a directory or file' you are left with the choice of attempting to CWD to
(and back from) each entry or parsing the LIST command. This extension is an attempt at parsing the LIST command
and as such is subject to all the variability that results from such an undertaking, take responses with a grain
of salt and expect failures.

See the RFC for more guff on LIST and NLST: http://www.ietf.org/rfc/rfc0959.txt

== TODO & PROBLEMS

* The factory and abstract base class for parsers are one and the same. OO geeks will cry.
* More OS's and server types. Only servers that return Unix like LIST responses will work at the moment.
* Calling <tt>if entry.file? or entry.dir?</tt> is hard work when you really mean <tt>unless entry.unknown?</tt>

== SYNOPSIS

  require 'net/ftp' # Not really required but I like to list dependencies sometimes.
  require 'net/ftp/list'

  ftp = Net::FTP.open('somehost.com', 'user', 'pass')
  ftp.list('/some/path') do |e|
    entry = Net::FTP::List.parse(e)

    # Ignore everything that's not a file (so symlinks, directories and devices etc.)
    next unless entry.file?

    # If entry isn't entry.unknown? then there is a bug in Net::FTP::List if this isn't the
    # same name as ftp.nlist('/some/path') would have returned.
    # Format the entry showing its file size and modification time
    puts "#{entry.basename}, #{entry.filesize}, #{entry.mtime}"

  end

== CREDITS

  * ASF, Commons. http://commons.apache.org/
  * The good people at Stateless Systems who let me write Ruby and give it away.

== LICENSE

(The MIT License, go nuts)

Copyright (c) 2007 Shane Hanna
Stateless Systems
http://statelesssystems.com

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.