📄 apr::finfo.3
字号:
.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05).\".\" Standard preamble:.\" ========================================================================.de Sh \" Subsection heading.br.if t .Sp.ne 5.PP\fB\\$1\fR.PP...de Sp \" Vertical space (when we can't use .PP).if t .sp .5v.if n .sp...de Vb \" Begin verbatim text.ft CW.nf.ne \\$1...de Ve \" End verbatim text.ft R.fi...\" Set up some character translations and predefined strings. \*(-- will.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left.\" double quote, and \*(R" will give a right double quote. \*(C+ will.\" give a nicer C++. Capital omega is used to do unbreakable dashes and.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,.\" nothing in troff, for use with C<>..tr \(*W-.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'.ie n \{\. ds -- \(*W-. ds PI pi. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch. ds L" "". ds R" "". ds C` "". ds C' ""'br\}.el\{\. ds -- \|\(em\|. ds PI \(*p. ds L" ``. ds R" '''br\}.\".\" Escape single quotes in literal strings from groff's Unicode transform..ie \n(.g .ds Aq \(aq.el .ds Aq '.\".\" If the F register is turned on, we'll generate index entries on stderr for.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index.\" entries marked with X<> in POD. Of course, you'll have to process the.\" output yourself in some meaningful fashion..ie \nF \{\. de IX. tm Index:\\$1\t\\n%\t"\\$2"... nr % 0. rr F.\}.el \{\. de IX...\}.\".\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2)..\" Fear. Run. Save yourself. No user-serviceable parts.. \" fudge factors for nroff and troff.if n \{\. ds #H 0. ds #V .8m. ds #F .3m. ds #[ \f1. ds #] \fP.\}.if t \{\. ds #H ((1u-(\\\\n(.fu%2u))*.13m). ds #V .6m. ds #F 0. ds #[ \&. ds #] \&.\}. \" simple accents for nroff and troff.if n \{\. ds ' \&. ds ` \&. ds ^ \&. ds , \&. ds ~ ~. ds /.\}.if t \{\. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u". ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'.\}. \" troff and (daisy-wheel) nroff accents.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'.ds 8 \h'\*(#H'\(*b\h'-\*(#H'.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#].ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#].ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#].ds ae a\h'-(\w'a'u*4/10)'e.ds Ae A\h'-(\w'A'u*4/10)'E. \" corrections for vroff.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'. \" for low resolution devices (crt and lpr).if \n(.H>23 .if \n(.V>19 \\{\. ds : e. ds 8 ss. ds o a. ds d- d\h'-1'\(ga. ds D- D\h'-1'\(hy. ds th \o'bp'. ds Th \o'LP'. ds ae ae. ds Ae AE.\}.rm #[ #] #H #V #F C.\" ========================================================================.\".IX Title "mod_perl-2.0.2::docs::api::APR::Finfo 3".TH mod_perl-2.0.2::docs::api::APR::Finfo 3 "2005-10-21" "perl v5.10.0" "User Contributed Perl Documentation".\" For nroff, turn off justification. Always turn off hyphenation; it makes.\" way too many mistakes in technical documents..if n .ad l.nh.SH "NAME"APR::Finfo \- Perl API for APR fileinfo structure.SH "Synopsis".IX Header "Synopsis".Vb 3\& use APR::Finfo ();\& use APR::Const \-compile => qw(FINFO_NORM);\& my $finfo = APR::Finfo::stat("/tmp/test", APR::Const::FINFO_NORM, $pool);\& \& $device = $finfo\->device; # (stat $file)[0]\& $inode = $finfo\->inode; # (stat $file)[1]\& $prot = $finfo\->protection; # (stat $file)[2]\& $nlink = $finfo\->nlink; # (stat $file)[3]\& $gid = $finfo\->group; # (stat $file)[4]\& $uid = $finfo\->user; # (stat $file)[5]\& $size = $finfo\->size; # (stat $file)[7]\& $atime = $finfo\->atime; # (stat $file)[8]\& $mtime = $finfo\->mtime; # (stat $file)[9]\& $ctime = $finfo\->ctime; # (stat $file)[10]\& \& $csize = $finfo\->csize; # consumed size: not portable!\& \& $filetype = $finfo\->filetype; # file/dir/socket/etc\& \& $fname = $finfo\->fname;\& $name = $finfo\->name; # in filesystem case:\& \& # valid fields that can be queried\& $valid = $finfo\->valid;.Ve.SH "Description".IX Header "Description"\&\s-1APR\s0 fileinfo structure provides somewhat similar information to Perl's\&\f(CW\*(C`stat()\*(C'\fR call, but you will want to use this module's \s-1API\s0 to query analready \f(CW\*(C`stat()\*(Aqed\*(C'\fR filehandle to avoid an extra system call or toquery attributes specific to \s-1APR\s0 file handles..PPDuring the \s-1HTTP\s0 request handlers coming after\&\f(CW\*(C`PerlMapToStorageHandler\*(C'\fR,\&\f(CW\*(C`$r\->finfo\*(C'\fRalready contains the cached values from the apr's \f(CW\*(C`stat()\*(C'\fR call. Soyou don't want to perform it again, but instead get the \f(CW\*(C`ARP::Finfo\*(C'\fRobject via:.PP.Vb 1\& my $finfo = $r\->finfo;.Ve.SH "API".IX Header "API"\&\f(CW\*(C`APR::Finfo\*(C'\fR provides the following functions and/or methods:.ie n .Sh """atime""".el .Sh "\f(CWatime\fP".IX Subsection "atime"Get the time the file was last accessed:.PP.Vb 1\& $atime = $finfo\->atime;.Ve.ie n .IP "obj: $finfo\fR ( \f(CW""APR::Finfo object"" )" 4.el .IP "obj: \f(CW$finfo\fR ( \f(CWAPR::Finfo object\fR )" 4.IX Item "obj: $finfo ( APR::Finfo object )".PD 0.ie n .IP "return: $atime ( integer )" 4.el .IP "return: \f(CW$atime\fR ( integer )" 4.IX Item "return: $atime ( integer )".PDLast access time in seconds since the epoch.IP "since: 2.0.00" 4.IX Item "since: 2.0.00".PPThis method returns the same value as Perl's:.PP.Vb 1\& (stat $filename)[8].Ve.PPNote that this method may not be reliable on all platforms, mostnotably Win32 \*(-- \s-1FAT32\s0 filesystems appear to work properly, but \s-1NTFS\s0filesystems do not..ie n .Sh """csize""".el .Sh "\f(CWcsize\fP".IX Subsection "csize"Get the storage size consumed by the file.PP.Vb 1\& $csize = $finfo\->csize;.Ve.ie n .IP "obj: $finfo\fR ( \f(CW""APR::Finfo object"" )" 4.el .IP "obj: \f(CW$finfo\fR ( \f(CWAPR::Finfo object\fR )" 4.IX Item "obj: $finfo ( APR::Finfo object )".PD 0.ie n .IP "return: $csize ( integer )" 4.el .IP "return: \f(CW$csize\fR ( integer )" 4.IX Item "return: $csize ( integer )".IP "since: 2.0.00" 4.IX Item "since: 2.0.00".PD.PPChances are that you don't want to use this method, since itsfunctionality is not supported on most platforms (in which case italways returns 0)..ie n .Sh """ctime""".el .Sh "\f(CWctime\fP".IX Subsection "ctime"Get the time the file was last changed.PP.Vb 1\& $ctime = $finfo\->ctime;.Ve.ie n .IP "obj: $finfo\fR ( \f(CW""APR::Finfo object"" )" 4.el .IP "obj: \f(CW$finfo\fR ( \f(CWAPR::Finfo object\fR )" 4.IX Item "obj: $finfo ( APR::Finfo object )".PD 0.ie n .IP "return: $ctime ( integer )" 4.el .IP "return: \f(CW$ctime\fR ( integer )" 4.IX Item "return: $ctime ( integer )".PDInode change time in seconds since the epoch.IP "since: 2.0.00" 4.IX Item "since: 2.0.00".PPThis method returns the same value as Perl's:.PP.Vb 1\& (stat $filename)[10].Ve.PPThe ctime field is non-portable. In particular, you cannot expect itto be a \*(L"creation time\*(R", see \*(L"Files and Filesystems\*(R" in the\&\fIperlport\fR manpage for details..ie n .Sh """device""".el .Sh "\f(CWdevice\fP".IX Subsection "device"Get the id of the device the file is on..PP.Vb 1\& $device = $finfo\->device;.Ve.ie n .IP "obj: $finfo\fR ( \f(CW""APR::Finfo object"" )" 4.el .IP "obj: \f(CW$finfo\fR ( \f(CWAPR::Finfo object\fR )" 4.IX Item "obj: $finfo ( APR::Finfo object )".PD 0.ie n .IP "return: $device ( integer )" 4.el .IP "return: \f(CW$device\fR ( integer )" 4.IX Item "return: $device ( integer )".IP "since: 2.0.00" 4.IX Item "since: 2.0.00".PD.PPThis method returns the same value as Perl's:.PP.Vb 1\& (stat $filename)[0].Ve.PPNote that this method is non-portable. It doesn't work on allplatforms, most notably Win32..ie n .Sh """filetype""".el .Sh "\f(CWfiletype\fP".IX Subsection "filetype"Get the type of file..PP.Vb 1\& $filetype = $finfo\->filetype;.Ve.ie n .IP "obj: $finfo\fR ( \f(CW""APR::Finfo object"" )" 4.el .IP "obj: \f(CW$finfo\fR ( \f(CWAPR::Finfo object\fR )" 4.IX Item "obj: $finfo ( APR::Finfo object )".PD 0.ie n .IP "return: $filetype\fR ( \f(CW"":filetype constant"" )" 4.el .IP "return: \f(CW$filetype\fR ( \f(CW:filetype constant\fR )" 4.IX Item "return: $filetype ( :filetype constant )".IP "since: 2.0.00" 4.IX Item "since: 2.0.00".PD.PPFor example:.PP.Vb 10\& use APR::Pool;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -