Net-FTPServer-PWP
view release on metacpan or search on metacpan
lib/Net/FTPServer/PWP/Server.pm view on Meta::CPAN
$self->{pwp_qhandle} = $self->{pwp_root};
# The quota file might be wanted outside
# the current home directory. Therefore,
# we need to be free from the hurdles
# of 'hide mount point'...
$self->{pwp_qhandle} = Net::FTPServer::Full::DirHandle
-> new($self, $self->{pwp_qhandle}->{_pathname});
my @parts = split m!/!, $self->{pwp_qfile};
while (my $c = shift @parts) {
next if $c eq '' or $c eq '.';
if ($c eq "..") {
$self->{pwp_qhandle} = $self->{pwp_qhandle}->parent;
}
else {
my $h = $self->{pwp_qhandle}->get($c);
if (!$h and !@parts) {
( run in 3.430 seconds using v1.01-cache-2.11-cpan-71847e10f99 )