logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Hotline::FileListItem - File object used internally by Net::Hotline::Client

Author

       John C. Siracusa (siracusa@mindspring.com)

Construction

       new Creates a new Net::Hotline::FileListItem object with all attributes set to undef (or zero for numeric
           attributes).

Description

       Net::Hotline::FileListItem is a simple class for storing and retrieving file information,  You should
       never have to create your own Net::Hotline::FileListItem objects when using Net::Hotline::Client.
       Getting and (to a lesser extent) setting attributes is all that should be necessary.

Methods

       All  the Net::Hotline::FileListItem methods are simple attribute get/set routines.  If given an argument,
       they set an attribute.  In all cases, they return the current value of the attribute.

       creator TEXT
           The file creator, given as a four-letter Mac OS creator code ("TTXT", "SIT!", etc.)

       name TEXT
           The file name.

       size NUM
           The size of the file in bytes.

       type TEXT
           The  file  type,  given  as  a  four-letter  Mac  OS   type   code   ("TEXT",   "PICT",   etc.)    or
           Net::Hotline::Constants::HTLC_FOLDER_TYPE for folders.

Name

       Net::Hotline::FileListItem - File object used internally by Net::Hotline::Client

Synopsis

           use Net::Hotline::FileListItem;

           $file = new Net::Hotline::FileListItem;

           $file->name("foo.txt");
           $file->type("TEXT");
           ...

See Also