NAME

Net::FTPServer::FileHandle - A Net::FTPServer file handle.

SYNOPSIS

use Net::FTPServer::FileHandle;

DESCRIPTION

METHODS

$filename = $fileh->filename;

Return the filename (last) component.

$dirh = $fileh->dir;

Return the directory which contains this file.

$fh = $fileh->open (["r"|"w"|"a"]);

Open a file handle (derived from IO::Handle, see IO::Handle(3)) in either read or write mode.

$rv = $fileh->delete;

Delete the current file. If the delete command was successful, then return 0, else if there was an error return -1.

$rv = $fileh->can_read;

Return true if the current user can read the given file.

$rv = $fileh->can_write;

Return true if the current user can overwrite the given file.

$rv = $fileh->can_append

Return true if the current user can append to the given file.

$rv = $fileh->can_rename;

Return true if the current user can change the name of the given file.

$rv = $fileh->can_delete;

Return true if the current user can delete the given file.

AUTHORS

Richard Jones (rich@annexia.org).

COPYRIGHT

Copyright (C) 2000 Biblio@Tech Ltd., Unit 2-3, 50 Carnwath Road, London, SW6 3EG, UK

SEE ALSO

Net::FTPServer(3), perl(1)

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 38:

You can't have =items (as at line 76) unless the first thing after the =over is an =item

Around line 202:

=back doesn't take any parameters, but you said =back 4