SYNOPSIS

    use Net::Hotline::FileInfoItem;

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

    $file->name("smile");
    $file->comments("A happy file.");
    ...

DESCRIPTION

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

CONSTRUCTION

new

Creates a new Net::Hotline::FileInfoItem object with all attributes set to undef.

METHODS

All the Net::Hotline::FileInfoItem 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.

comment \s-1TEXT\s0

The file comments (as seen in the Mac \s-1OS\s0 Finder).

ctime \s-1NUM\s0

The creation time of the file, given as a Mac \s-1OS\s0 native time value. Add the constant Net::Hotline::Constants::HTLC_MACOS_TO_UNIX_TIME to it to change it to seconds since the Unix epoch.

creator \s-1TEXT\s0

The file creator, given as a four-letter Mac \s-1OS\s0 creator code (\*(L"\s-1TTXT\s0\*(R", \*(L"\s-1SIT\s0!\*(R", etc.)

name \s-1TEXT\s0

The file name.

icon

The file icon given as a four-letter code.

mtime \s-1NUM\s0

The modification time of the file, given as a Mac \s-1OS\s0 native time value. Add the constant Net::Hotline::Constants::HTLC_MACOS_TO_UNIX_TIME to it to change it to seconds since the Unix epoch.

ctime \s-1NUM\s0

The creation time of the file, given as a Mac \s-1OS\s0 native time value. Add the constant Net::Hotline::Constants::HTLC_MACOS_TO_UNIX_TIME to it to change it to seconds since the Unix epoch.

size \s-1NUM\s0

The size of the file in bytes.

type \s-1TEXT\s0

The file type, given as a four-letter Mac \s-1OS\s0 type code (\*(L"\s-1TEXT\s0\*(R", \*(L"\s-1PICT\s0\*(R", etc.), Net::Hotline::Constants::HTLC_INFO_FOLDER_TYPE for folders, and Net::Hotline::Constants::HTLC_INFO_FALIAS_TYPE for folder aliases.

AUTHOR

John C. Siracusa ([email protected])

COPYRIGHT

Copyright(c) 1999 by John Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.