AnyEvent::FTP::Client::Site::Proftpd - Site specific commands for Proftpd
version 0.19
use AnyEvent::FTP::Client; my $client = AnyEvent::FTP::Client->new; $client->connect('ftp://proftpdserver')->cb(sub { $client->site->proftpd->symlink('foo', 'bar'); });
This class implements site specific commands for the Proftpd server. The implementation may be incomplete, and the documentation definitely is. Patches are welcome to fix this.
$client->site->proftpd->utime( $arg1, $arg2 );
Execute SITE UTIME
command.
$client->site->proftpd->mkdir( $arg1 );
Execute SITE MKDIR
command.
$client->site->proftpd->rmdir( $arg1 );
Execute SITE RMDIR
command.
$client->site->proftpd->symlink( $arg1, $arg2 );
Execute SITE SYMLINK
command.
$client->site->proftpd->ratio;
Execute SITE RATIO
command.
$client->site->proftpd->help( $arg1 );
Execute SITE HELP
command.
$client->site->proftpd->chgrp( $arg1, $arg2 );
Execute SITE CHGRP
command.
$client->site->proftpd->chmodk( $arg1, $arg2 );
Execute SITE CHMOD
command.
Author: Graham Ollis <plicease@cpan.org>
Contributors:
Ryo Okamoto
Shlomi Fish
José Joaquín Atria
This software is copyright (c) 2017-2021 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.