NAME
POSIX::1003::Pathconf - POSIX access to pathconf()
SYNOPSIS
use POSIX::1003::Pathconf; # import all
use POSIX::1003::Pathconf 'pathconf';
my $max = pathconf($filename, '_PC_PATH_MAX');
use POSIX::1003::Pathconf '_PC_PATH_MAX';
my $max = _PC_PATH_MAX($filename);
use POSIX::1003::Pathconf qw(pathconf %pathconf);
my $key = $pathconf{_PC_PATH_MAX};
$pathconf{_PC_NEW_KEY} = $value
foreach my $name (keys %pathconf) ...
use POSIX::1003::Pathconf qw(fpathconf);
use POSIX::1003::FdIO qw(openfd);
use Fcntl qw(O_RDONLY);
my $fd = openfd $fn, O_RDONLY;
my $max = fpathconf $fd, '_PC_PATH_MAX';
my $max = _PC_PATH_MAX($fd);
foreach my $pc (pathconf_names) ...
DESCRIPTION
With pathconf()
you query filesystem limits for a certain existing location.
METHODS
FUNCTIONS
Standard POSIX
- fpathconf($fd, $name)
-
Returns the numeric value related to the $name or
undef
. - pathconf($filename, $name)
-
Returns the numeric value related to the $name or
undef
.
Additional
CONSTANTS
- %pathconf
-
This exported variable is a tied HASH which maps
_PC_*
names on unique numbers, to be used with the system'spathconf()
andfpathconf()
functions.The following constants where detected on your system when the module got installed. The second column shows the value which where returned for a random file at the time.
During installation, a symbol table will get inserted here.
SEE ALSO
This module is part of POSIX-1003 distribution version 1.02, built on November 10, 2020. Website: http://perl.overmeer.net/CPAN. The code is based on POSIX, which is released with Perl itself. See also POSIX::Util for additional functionality.
COPYRIGHTS
Copyrights 2011-2020 on the perl code and the related documentation by [Mark Overmeer]. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/