Mini Shell
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42)
.\"
.\" Standard preamble:
.\" ========================================================================
.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" ''
. ds C`
. ds C'
'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 >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Path::Tiny 3"
.TH Path::Tiny 3 "2024-05-08" "perl v5.32.1" "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"
Path::Tiny \- File path utility
.SH "VERSION"
.IX Header "VERSION"
version 0.146
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 1
\& use Path::Tiny;
\&
\& # Creating Path::Tiny objects
\&
\& my $dir = path("/tmp");
\& my $foo = path("foo.txt");
\&
\& my $subdir = $dir\->child("foo");
\& my $bar = $subdir\->child("bar.txt");
\&
\& # Stringifies as cleaned up path
\&
\& my $file = path("./foo.txt");
\& print $file; # "foo.txt"
\&
\& # Reading files
\&
\& my $guts = $file\->slurp;
\& $guts = $file\->slurp_utf8;
\&
\& my @lines = $file\->lines;
\& @lines = $file\->lines_utf8;
\&
\& my ($head) = $file\->lines( {count => 1} );
\& my ($tail) = $file\->lines( {count => \-1} );
\&
\& # Writing files
\&
\& $bar\->spew( @data );
\& $bar\->spew_utf8( @data );
\&
\& # Reading directories
\&
\& for ( $dir\->children ) { ... }
\&
\& my $iter = $dir\->iterator;
\& while ( my $next = $iter\->() ) { ... }
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
This module provides a small, fast utility for working with file paths. It is
friendlier to use than File::Spec and provides easy access to functions from
several other core file handling modules. It aims to be smaller and faster
than many alternatives on \s-1CPAN,\s0 while helping people do many common things in
consistent and less error-prone ways.
.PP
Path::Tiny does not try to work for anything except Unix-like and Win32
platforms. Even then, it might break if you try something particularly obscure
or tortuous. (Quick! What does this mean:
\&\f(CW\*(C`///../../..//./././a//b/.././c/././\*(C'\fR? And how does it differ on Win32?)
.PP
All paths are forced to have Unix-style forward slashes. Stringifying
the object gives you back the path (after some clean up).
.PP
File input/output methods \f(CW\*(C`flock\*(C'\fR handles before reading or writing,
as appropriate (if supported by the platform and/or filesystem).
.PP
The \f(CW*_utf8\fR methods (\f(CW\*(C`slurp_utf8\*(C'\fR, \f(CW\*(C`lines_utf8\*(C'\fR, etc.) operate in raw
mode. On Windows, that means they will not have \s-1CRLF\s0 translation from the
\&\f(CW\*(C`:crlf\*(C'\fR \s-1IO\s0 layer. Installing Unicode::UTF8 0.58 or later will speed up
\&\f(CW*_utf8\fR situations in many cases and is highly recommended.
Alternatively, installing PerlIO::utf8_strict 0.003 or later will be
used in place of the default \f(CW\*(C`:encoding(UTF\-8)\*(C'\fR.
.PP
This module depends heavily on PerlIO layers for correct operation and thus
requires Perl 5.008001 or later.
.SH "CONSTRUCTORS"
.IX Header "CONSTRUCTORS"
.SS "path"
.IX Subsection "path"
.Vb 3
\& $path = path("foo/bar");
\& $path = path("/tmp", "file.txt"); # list
\& $path = path("."); # cwd
.Ve
.PP
Constructs a \f(CW\*(C`Path::Tiny\*(C'\fR object. It doesn't matter if you give a file or
directory path. It's still up to you to call directory-like methods only on
directories and file-like methods only on files. This function is exported
automatically by default.
.PP
The first argument must be defined and have non-zero length or an exception
will be thrown. This prevents subtle, dangerous errors with code like
\&\f(CW\*(C`path( maybe_undef() )\->remove_tree\*(C'\fR.
.PP
\&\fB\s-1DEPRECATED\s0\fR: If and only if the \fBfirst\fR character of the \fBfirst\fR argument
to \f(CW\*(C`path\*(C'\fR is a tilde ('~'), then tilde replacement will be applied to the
first path segment. A single tilde will be replaced with \f(CW\*(C`glob(\*(Aq~\*(Aq)\*(C'\fR and a
tilde followed by a username will be replaced with output of
\&\f(CW\*(C`glob(\*(Aq~username\*(Aq)\*(C'\fR. \fBNo other method does tilde expansion on its arguments\fR.
See \*(L"Tilde expansion (deprecated)\*(R" for more.
.PP
On Windows, if the path consists of a drive identifier without a path component
(\f(CW\*(C`C:\*(C'\fR or \f(CW\*(C`D:\*(C'\fR), it will be expanded to the absolute path of the current
directory on that volume using \f(CW\*(C`Cwd::getdcwd()\*(C'\fR.
.PP
If called with a single \f(CW\*(C`Path::Tiny\*(C'\fR argument, the original is returned unless
the original is holding a temporary file or directory reference in which case a
stringified copy is made.
.PP
.Vb 2
\& $path = path("foo/bar");
\& $temp = Path::Tiny\->tempfile;
\&
\& $p2 = path($path); # like $p2 = $path
\& $t2 = path($temp); # like $t2 = path( "$temp" )
.Ve
.PP
This optimizes copies without proliferating references unexpectedly if a copy is
made by code outside your control.
.PP
Current \s-1API\s0 available since 0.017.
.SS "new"
.IX Subsection "new"
.Vb 1
\& $path = Path::Tiny\->new("foo/bar");
.Ve
.PP
This is just like \f(CW\*(C`path\*(C'\fR, but with method call overhead. (Why would you
do that?)
.PP
Current \s-1API\s0 available since 0.001.
.SS "cwd"
.IX Subsection "cwd"
.Vb 2
\& $path = Path::Tiny\->cwd; # path( Cwd::getcwd )
\& $path = cwd; # optional export
.Ve
.PP
Gives you the absolute path to the current directory as a \f(CW\*(C`Path::Tiny\*(C'\fR object.
This is slightly faster than \f(CW\*(C`path(".")\->absolute\*(C'\fR.
.PP
\&\f(CW\*(C`cwd\*(C'\fR may be exported on request and used as a function instead of as a
method.
.PP
Current \s-1API\s0 available since 0.018.
.SS "rootdir"
.IX Subsection "rootdir"
.Vb 2
\& $path = Path::Tiny\->rootdir; # /
\& $path = rootdir; # optional export
.Ve
.PP
Gives you \f(CW\*(C`File::Spec\->rootdir\*(C'\fR as a \f(CW\*(C`Path::Tiny\*(C'\fR object if you're too
picky for \f(CW\*(C`path("/")\*(C'\fR.
.PP
\&\f(CW\*(C`rootdir\*(C'\fR may be exported on request and used as a function instead of as a
method.
.PP
Current \s-1API\s0 available since 0.018.
.SS "tempfile, tempdir"
.IX Subsection "tempfile, tempdir"
.Vb 6
\& $temp = Path::Tiny\->tempfile( @options );
\& $temp = Path::Tiny\->tempdir( @options );
\& $temp = $dirpath\->tempfile( @options );
\& $temp = $dirpath\->tempdir( @options );
\& $temp = tempfile( @options ); # optional export
\& $temp = tempdir( @options ); # optional export
.Ve
.PP
\&\f(CW\*(C`tempfile\*(C'\fR passes the options to \f(CW\*(C`File::Temp\->new\*(C'\fR and returns a
\&\f(CW\*(C`Path::Tiny\*(C'\fR object with the file name. The \f(CW\*(C`TMPDIR\*(C'\fR option will be enabled
by default, but you can override that by passing \f(CW\*(C`TMPDIR => 0\*(C'\fR along with
the options. (If you use an absolute \f(CW\*(C`TEMPLATE\*(C'\fR option, you will want to
disable \f(CW\*(C`TMPDIR\*(C'\fR.)
.PP
The resulting \f(CW\*(C`File::Temp\*(C'\fR object is cached. When the \f(CW\*(C`Path::Tiny\*(C'\fR object is
destroyed, the \f(CW\*(C`File::Temp\*(C'\fR object will be as well.
.PP
\&\f(CW\*(C`File::Temp\*(C'\fR annoyingly requires you to specify a custom template in slightly
different ways depending on which function or method you call, but
\&\f(CW\*(C`Path::Tiny\*(C'\fR lets you ignore that and can take either a leading template or a
\&\f(CW\*(C`TEMPLATE\*(C'\fR option and does the right thing.
.PP
.Vb 2
\& $temp = Path::Tiny\->tempfile( "customXXXXXXXX" ); # ok
\& $temp = Path::Tiny\->tempfile( TEMPLATE => "customXXXXXXXX" ); # ok
.Ve
.PP
The tempfile path object will be normalized to have an absolute path, even if
created in a relative directory using \f(CW\*(C`DIR\*(C'\fR. If you want it to have
the \f(CW\*(C`realpath\*(C'\fR instead, pass a leading options hash like this:
.PP
.Vb 1
\& $real_temp = tempfile({realpath => 1}, @options);
.Ve
.PP
\&\f(CW\*(C`tempdir\*(C'\fR is just like \f(CW\*(C`tempfile\*(C'\fR, except it calls
\&\f(CW\*(C`File::Temp\->newdir\*(C'\fR instead.
.PP
Both \f(CW\*(C`tempfile\*(C'\fR and \f(CW\*(C`tempdir\*(C'\fR may be exported on request and used as
functions instead of as methods.
.PP
The methods can be called on an instances representing a
directory. In this case, the directory is used as the base to create the
temporary file/directory, setting the \f(CW\*(C`DIR\*(C'\fR option in File::Temp.
.PP
.Vb 4
\& my $target_dir = path(\*(Aq/to/destination\*(Aq);
\& my $tempfile = $target_dir\->tempfile(\*(AqfoobarXXXXXX\*(Aq);
\& $tempfile\->spew(\*(AqA lot of data...\*(Aq); # not atomic
\& $tempfile\->move($target_dir\->child(\*(Aqfoobar\*(Aq)); # hopefully atomic
.Ve
.PP
In this case, any value set for option \f(CW\*(C`DIR\*(C'\fR is ignored.
.PP
\&\fBNote\fR: for tempfiles, the filehandles from File::Temp are closed and not
reused. This is not as secure as using File::Temp handles directly, but is
less prone to deadlocks or access problems on some platforms. Think of what
\&\f(CW\*(C`Path::Tiny\*(C'\fR gives you to be just a temporary file \fBname\fR that gets cleaned
up.
.PP
\&\fBNote 2\fR: if you don't want these cleaned up automatically when the object
is destroyed, File::Temp requires different options for directories and
files. Use \f(CW\*(C`CLEANUP => 0\*(C'\fR for directories and \f(CW\*(C`UNLINK => 0\*(C'\fR for
files.
.PP
\&\fBNote 3\fR: Don't lose the temporary object by chaining a method call instead
of storing it:
.PP
.Vb 1
\& my $lost = tempdir()\->child("foo"); # tempdir cleaned up right away
.Ve
.PP
\&\fBNote 4\fR: The cached object may be accessed with the \*(L"cached_temp\*(R" method.
Keeping a reference to, or modifying the cached object may break the
behavior documented above and is not supported. Use at your own risk.
.PP
Current \s-1API\s0 available since 0.119.
.SH "METHODS"
.IX Header "METHODS"
.SS "absolute"
.IX Subsection "absolute"
.Vb 2
\& $abs = path("foo/bar")\->absolute;
\& $abs = path("foo/bar")\->absolute("/tmp");
.Ve
.PP
Returns a new \f(CW\*(C`Path::Tiny\*(C'\fR object with an absolute path (or itself if already
absolute). If no argument is given, the current directory is used as the
absolute base path. If an argument is given, it will be converted to an
absolute path (if it is not already) and used as the absolute base path.
.PP
This will not resolve upward directories (\*(L"foo/../bar\*(R") unless \f(CW\*(C`canonpath\*(C'\fR
in File::Spec would normally do so on your platform. If you need them
resolved, you must call the more expensive \f(CW\*(C`realpath\*(C'\fR method instead.
.PP
On Windows, an absolute path without a volume component will have it added
based on the current drive.
.PP
Current \s-1API\s0 available since 0.101.
.SS "append, append_raw, append_utf8"
.IX Subsection "append, append_raw, append_utf8"
.Vb 5
\& path("foo.txt")\->append(@data);
\& path("foo.txt")\->append(\e@data);
\& path("foo.txt")\->append({binmode => ":raw"}, @data);
\& path("foo.txt")\->append_raw(@data);
\& path("foo.txt")\->append_utf8(@data);
.Ve
.PP
Appends data to a file. The file is locked with \f(CW\*(C`flock\*(C'\fR prior to writing
and closed afterwards. An optional hash reference may be used to pass
options. Valid options are:
.IP "\(bu" 4
\&\f(CW\*(C`binmode\*(C'\fR: passed to \f(CW\*(C`binmode()\*(C'\fR on the handle used for writing.
.IP "\(bu" 4
\&\f(CW\*(C`truncate\*(C'\fR: truncates the file after locking and before appending
.PP
The \f(CW\*(C`truncate\*(C'\fR option is a way to replace the contents of a file
\&\fBin place\fR, unlike \*(L"spew\*(R" which writes to a temporary file and then
replaces the original (if it exists).
.PP
\&\f(CW\*(C`append_raw\*(C'\fR is like \f(CW\*(C`append\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:unix\*(C'\fR for a fast,
unbuffered, raw write.
.PP
\&\f(CW\*(C`append_utf8\*(C'\fR is like \f(CW\*(C`append\*(C'\fR with an unbuffered \f(CW\*(C`binmode\*(C'\fR
\&\f(CW\*(C`:unix:encoding(UTF\-8)\*(C'\fR (or \f(CW\*(C`:unix:utf8_strict\*(C'\fR with
PerlIO::utf8_strict). If Unicode::UTF8 0.58+ is installed, an
unbuffered, raw append will be done instead on the data encoded with
\&\f(CW\*(C`Unicode::UTF8\*(C'\fR.
.PP
Current \s-1API\s0 available since 0.060.
.SS "assert"
.IX Subsection "assert"
.Vb 1
\& $path = path("foo.txt")\->assert( sub { $_\->exists } );
.Ve
.PP
Returns the invocant after asserting that a code reference argument returns
true. When the assertion code reference runs, it will have the invocant
object in the \f(CW$_\fR variable. If it returns false, an exception will be
thrown. The assertion code reference may also throw its own exception.
.PP
If no assertion is provided, the invocant is returned without error.
.PP
Current \s-1API\s0 available since 0.062.
.SS "basename"
.IX Subsection "basename"
.Vb 4
\& $name = path("foo/bar.txt")\->basename; # bar.txt
\& $name = path("foo.txt")\->basename(\*(Aq.txt\*(Aq); # foo
\& $name = path("foo.txt")\->basename(qr/.txt/); # foo
\& $name = path("foo.txt")\->basename(@suffixes);
.Ve
.PP
Returns the file portion or last directory portion of a path.
.PP
Given a list of suffixes as strings or regular expressions, any that match at
the end of the file portion or last directory portion will be removed before
the result is returned.
.PP
Current \s-1API\s0 available since 0.054.
.SS "canonpath"
.IX Subsection "canonpath"
.Vb 1
\& $canonical = path("foo/bar")\->canonpath; # foo\ebar on Windows
.Ve
.PP
Returns a string with the canonical format of the path name for
the platform. In particular, this means directory separators
will be \f(CW\*(C`\e\*(C'\fR on Windows.
.PP
Current \s-1API\s0 available since 0.001.
.SS "cached_temp"
.IX Subsection "cached_temp"
Returns the cached \f(CW\*(C`File::Temp\*(C'\fR or \f(CW\*(C`File::Temp::Dir\*(C'\fR object if the
\&\f(CW\*(C`Path::Tiny\*(C'\fR object was created with \f(CW\*(C`/tempfile\*(C'\fR or \f(CW\*(C`/tempdir\*(C'\fR.
If there is no such object, this method throws.
.PP
\&\fB\s-1WARNING\s0\fR: Keeping a reference to, or modifying the cached object may
break the behavior documented for temporary files and directories created
with \f(CW\*(C`Path::Tiny\*(C'\fR and is not supported. Use at your own risk.
.PP
Current \s-1API\s0 available since 0.101.
.SS "child"
.IX Subsection "child"
.Vb 2
\& $file = path("/tmp")\->child("foo.txt"); # "/tmp/foo.txt"
\& $file = path("/tmp")\->child(@parts);
.Ve
.PP
Returns a new \f(CW\*(C`Path::Tiny\*(C'\fR object relative to the original. Works
like \f(CW\*(C`catfile\*(C'\fR or \f(CW\*(C`catdir\*(C'\fR from File::Spec, but without caring about
file or directories.
.PP
\&\fB\s-1WARNING\s0\fR: because the argument could contain \f(CW\*(C`..\*(C'\fR or refer to symlinks,
there is no guarantee that the new path refers to an actual descendent of
the original. If this is important to you, transform parent and child with
\&\*(L"realpath\*(R" and check them with \*(L"subsumes\*(R".
.PP
Current \s-1API\s0 available since 0.001.
.SS "children"
.IX Subsection "children"
.Vb 2
\& @paths = path("/tmp")\->children;
\& @paths = path("/tmp")\->children( qr/\e.txt\ez/ );
.Ve
.PP
Returns a list of \f(CW\*(C`Path::Tiny\*(C'\fR objects for all files and directories
within a directory. Excludes \*(L".\*(R" and \*(L"..\*(R" automatically.
.PP
If an optional \f(CW\*(C`qr//\*(C'\fR argument is provided, it only returns objects for child
names that match the given regular expression. Only the base name is used
for matching:
.PP
.Vb 2
\& @paths = path("/tmp")\->children( qr/^foo/ );
\& # matches children like the glob foo*
.Ve
.PP
Current \s-1API\s0 available since 0.028.
.SS "chmod"
.IX Subsection "chmod"
.Vb 4
\& path("foo.txt")\->chmod(0777);
\& path("foo.txt")\->chmod("0755");
\& path("foo.txt")\->chmod("go\-w");
\& path("foo.txt")\->chmod("a=r,u+wx");
.Ve
.PP
Sets file or directory permissions. The argument can be a numeric mode, a
octal string beginning with a \*(L"0\*(R" or a limited subset of the symbolic mode use
by \fI/bin/chmod\fR.
.PP
The symbolic mode must be a comma-delimited list of mode clauses. Clauses must
match \f(CW\*(C`qr/\eA([augo]+)([=+\-])([rwx]+)\ez/\*(C'\fR, which defines \*(L"who\*(R", \*(L"op\*(R" and
\&\*(L"perms\*(R" parameters for each clause. Unlike \fI/bin/chmod\fR, all three parameters
are required for each clause, multiple ops are not allowed and permissions
\&\f(CW\*(C`stugoX\*(C'\fR are not supported. (See File::chmod for more complex needs.)
.PP
Current \s-1API\s0 available since 0.053.
.SS "copy"
.IX Subsection "copy"
.Vb 1
\& path("/tmp/foo.txt")\->copy("/tmp/bar.txt");
.Ve
.PP
Copies the current path to the given destination using File::Copy's
\&\f(CW\*(C`copy\*(C'\fR function. Upon success, returns the \f(CW\*(C`Path::Tiny\*(C'\fR object for the
newly copied file.
.PP
Current \s-1API\s0 available since 0.070.
.SS "digest"
.IX Subsection "digest"
.Vb 3
\& $obj = path("/tmp/foo.txt")\->digest; # SHA\-256
\& $obj = path("/tmp/foo.txt")\->digest("MD5"); # user\-selected
\& $obj = path("/tmp/foo.txt")\->digest( { chunk_size => 1e6 }, "MD5" );
.Ve
.PP
Returns a hexadecimal digest for a file. An optional hash reference of options may
be given. The only option is \f(CW\*(C`chunk_size\*(C'\fR. If \f(CW\*(C`chunk_size\*(C'\fR is given, that many
bytes will be read at a time. If not provided, the entire file will be slurped
into memory to compute the digest.
.PP
Any subsequent arguments are passed to the constructor for Digest to select
an algorithm. If no arguments are given, the default is \s-1SHA\-256.\s0
.PP
Current \s-1API\s0 available since 0.056.
.SS "dirname (deprecated)"
.IX Subsection "dirname (deprecated)"
.Vb 1
\& $name = path("/tmp/foo.txt")\->dirname; # "/tmp/"
.Ve
.PP
Returns the directory portion you would get from calling
\&\f(CW\*(C`File::Spec\->splitpath( $path\->stringify )\*(C'\fR or \f(CW"."\fR for a path without a
parent directory portion. Because File::Spec is inconsistent, the result
might or might not have a trailing slash. Because of this, this method is
\&\fBdeprecated\fR.
.PP
A better, more consistently approach is likely \f(CW\*(C`$path\->parent\->stringify\*(C'\fR,
which will not have a trailing slash except for a root directory.
.PP
Deprecated in 0.056.
.SS "edit, edit_raw, edit_utf8"
.IX Subsection "edit, edit_raw, edit_utf8"
.Vb 3
\& path("foo.txt")\->edit( \e&callback, $options );
\& path("foo.txt")\->edit_utf8( \e&callback );
\& path("foo.txt")\->edit_raw( \e&callback );
.Ve
.PP
These are convenience methods that allow \*(L"editing\*(R" a file using a single
callback argument. They slurp the file using \f(CW\*(C`slurp\*(C'\fR, place the contents
inside a localized \f(CW$_\fR variable, call the callback function (without
arguments), and then write \f(CW$_\fR (presumably mutated) back to the
file with \f(CW\*(C`spew\*(C'\fR.
.PP
An optional hash reference may be used to pass options. The only option is
\&\f(CW\*(C`binmode\*(C'\fR, which is passed to \f(CW\*(C`slurp\*(C'\fR and \f(CW\*(C`spew\*(C'\fR.
.PP
\&\f(CW\*(C`edit_utf8\*(C'\fR and \f(CW\*(C`edit_raw\*(C'\fR act like their respective \f(CW\*(C`slurp_*\*(C'\fR and
\&\f(CW\*(C`spew_*\*(C'\fR methods.
.PP
Current \s-1API\s0 available since 0.077.
.SS "edit_lines, edit_lines_utf8, edit_lines_raw"
.IX Subsection "edit_lines, edit_lines_utf8, edit_lines_raw"
.Vb 3
\& path("foo.txt")\->edit_lines( \e&callback, $options );
\& path("foo.txt")\->edit_lines_utf8( \e&callback );
\& path("foo.txt")\->edit_lines_raw( \e&callback );
.Ve
.PP
These are convenience methods that allow \*(L"editing\*(R" a file's lines using a
single callback argument. They iterate over the file: for each line, the
line is put into a localized \f(CW$_\fR variable, the callback function is
executed (without arguments) and then \f(CW$_\fR is written to a temporary file.
When iteration is finished, the temporary file is atomically renamed over
the original.
.PP
An optional hash reference may be used to pass options. The only option is
\&\f(CW\*(C`binmode\*(C'\fR, which is passed to the method that open handles for reading and
writing.
.PP
\&\f(CW\*(C`edit_lines_raw\*(C'\fR is like \f(CW\*(C`edit_lines\*(C'\fR with a buffered \f(CW\*(C`binmode\*(C'\fR of
\&\f(CW\*(C`:raw\*(C'\fR.
.PP
\&\f(CW\*(C`edit_lines_utf8\*(C'\fR is like \f(CW\*(C`edit_lines\*(C'\fR with a buffered \f(CW\*(C`binmode\*(C'\fR
\&\f(CW\*(C`:raw:encoding(UTF\-8)\*(C'\fR (or \f(CW\*(C`:raw:utf8_strict\*(C'\fR with
PerlIO::utf8_strict).
.PP
Current \s-1API\s0 available since 0.077.
.SS "exists, is_file, is_dir"
.IX Subsection "exists, is_file, is_dir"
.Vb 3
\& if ( path("/tmp")\->exists ) { ... } # \-e
\& if ( path("/tmp")\->is_dir ) { ... } # \-d
\& if ( path("/tmp")\->is_file ) { ... } # \-e && ! \-d
.Ve
.PP
Implements file test operations, this means the file or directory actually has
to exist on the filesystem. Until then, it's just a path.
.PP
\&\fBNote\fR: \f(CW\*(C`is_file\*(C'\fR is not \f(CW\*(C`\-f\*(C'\fR because \f(CW\*(C`\-f\*(C'\fR is not the opposite of \f(CW\*(C`\-d\*(C'\fR.
\&\f(CW\*(C`\-f\*(C'\fR means \*(L"plain file\*(R", excluding symlinks, devices, etc. that often can be
read just like files.
.PP
Use \f(CW\*(C`\-f\*(C'\fR instead if you really mean to check for a plain file.
.PP
Current \s-1API\s0 available since 0.053.
.SS "filehandle"
.IX Subsection "filehandle"
.Vb 3
\& $fh = path("/tmp/foo.txt")\->filehandle($mode, $binmode);
\& $fh = path("/tmp/foo.txt")\->filehandle({ locked => 1 }, $mode, $binmode);
\& $fh = path("/tmp/foo.txt")\->filehandle({ exclusive => 1 }, $mode, $binmode);
.Ve
.PP
Returns an open file handle. The \f(CW$mode\fR argument must be a Perl-style
read/write mode string (\*(L"<\*(R" ,\*(L">\*(R", \*(L">>\*(R", etc.). If a \f(CW$binmode\fR
is given, it is set during the \f(CW\*(C`open\*(C'\fR call.
.PP
An optional hash reference may be used to pass options.
.PP
The \f(CW\*(C`locked\*(C'\fR option governs file locking; if true, handles opened for writing,
appending or read-write are locked with \f(CW\*(C`LOCK_EX\*(C'\fR; otherwise, they are
locked with \f(CW\*(C`LOCK_SH\*(C'\fR. When using \f(CW\*(C`locked\*(C'\fR, \*(L">\*(R" or \*(L"+>\*(R" modes will delay
truncation until after the lock is acquired.
.PP
The \f(CW\*(C`exclusive\*(C'\fR option causes the \fBopen()\fR call to fail if the file already
exists. This corresponds to the O_EXCL flag to sysopen / \fBopen\fR\|(2).
\&\f(CW\*(C`exclusive\*(C'\fR implies \f(CW\*(C`locked\*(C'\fR and will set it for you if you forget it.
.PP
See \f(CW\*(C`openr\*(C'\fR, \f(CW\*(C`openw\*(C'\fR, \f(CW\*(C`openrw\*(C'\fR, and \f(CW\*(C`opena\*(C'\fR for sugar.
.PP
Current \s-1API\s0 available since 0.066.
.SS "has_same_bytes"
.IX Subsection "has_same_bytes"
.Vb 3
\& if ( path("foo.txt")\->has_same_bytes("bar.txt") ) {
\& # ...
\& }
.Ve
.PP
This method returns true if both the invocant and the argument can be opened as
file handles and the handles contain the same bytes. It returns false if their
contents differ. If either can't be opened as a file (e.g. a directory or
non-existent file), the method throws an exception. If both can be opened and
both have the same \f(CW\*(C`realpath\*(C'\fR, the method returns true without scanning any
data.
.PP
Current \s-1API\s0 available since 0.125.
.SS "is_absolute, is_relative"
.IX Subsection "is_absolute, is_relative"
.Vb 2
\& if ( path("/tmp")\->is_absolute ) { ... }
\& if ( path("/tmp")\->is_relative ) { ... }
.Ve
.PP
Booleans for whether the path appears absolute or relative.
.PP
Current \s-1API\s0 available since 0.001.
.SS "is_rootdir"
.IX Subsection "is_rootdir"
.Vb 4
\& while ( ! $path\->is_rootdir ) {
\& $path = $path\->parent;
\& ...
\& }
.Ve
.PP
Boolean for whether the path is the root directory of the volume. I.e. the
\&\f(CW\*(C`dirname\*(C'\fR is \f(CW\*(C`q[/]\*(C'\fR and the \f(CW\*(C`basename\*(C'\fR is \f(CW\*(C`q[]\*(C'\fR.
.PP
This works even on \f(CW\*(C`MSWin32\*(C'\fR with drives and \s-1UNC\s0 volumes:
.PP
.Vb 2
\& path("C:/")\->is_rootdir; # true
\& path("//server/share/")\->is_rootdir; #true
.Ve
.PP
Current \s-1API\s0 available since 0.038.
.SS "iterator"
.IX Subsection "iterator"
.Vb 1
\& $iter = path("/tmp")\->iterator( \e%options );
.Ve
.PP
Returns a code reference that walks a directory lazily. Each invocation
returns a \f(CW\*(C`Path::Tiny\*(C'\fR object or undef when the iterator is exhausted.
.PP
.Vb 4
\& $iter = path("/tmp")\->iterator;
\& while ( $path = $iter\->() ) {
\& ...
\& }
.Ve
.PP
The current and parent directory entries (\*(L".\*(R" and \*(L"..\*(R") will not
be included.
.PP
If the \f(CW\*(C`recurse\*(C'\fR option is true, the iterator will walk the directory
recursively, breadth-first. If the \f(CW\*(C`follow_symlinks\*(C'\fR option is also true,
directory links will be followed recursively. There is no protection against
loops when following links. If a directory is not readable, it will not be
followed.
.PP
The default is the same as:
.PP
.Vb 4
\& $iter = path("/tmp")\->iterator( {
\& recurse => 0,
\& follow_symlinks => 0,
\& } );
.Ve
.PP
For a more powerful, recursive iterator with built-in loop avoidance, see
Path::Iterator::Rule.
.PP
See also \*(L"visit\*(R".
.PP
Current \s-1API\s0 available since 0.016.
.SS "lines, lines_raw, lines_utf8"
.IX Subsection "lines, lines_raw, lines_utf8"
.Vb 4
\& @contents = path("/tmp/foo.txt")\->lines;
\& @contents = path("/tmp/foo.txt")\->lines(\e%options);
\& @contents = path("/tmp/foo.txt")\->lines_raw;
\& @contents = path("/tmp/foo.txt")\->lines_utf8;
\&
\& @contents = path("/tmp/foo.txt")\->lines( { chomp => 1, count => 4 } );
.Ve
.PP
Returns a list of lines from a file. Optionally takes a hash-reference of
options. Valid options are \f(CW\*(C`binmode\*(C'\fR, \f(CW\*(C`count\*(C'\fR and \f(CW\*(C`chomp\*(C'\fR.
.PP
If \f(CW\*(C`binmode\*(C'\fR is provided, it will be set on the handle prior to reading.
.PP
If a positive \f(CW\*(C`count\*(C'\fR is provided, that many lines will be returned from the
start of the file. If a negative \f(CW\*(C`count\*(C'\fR is provided, the entire file will be
read, but only \f(CW\*(C`abs(count)\*(C'\fR will be kept and returned. If \f(CW\*(C`abs(count)\*(C'\fR
exceeds the number of lines in the file, all lines will be returned.
.PP
If \f(CW\*(C`chomp\*(C'\fR is set, any end-of-line character sequences (\f(CW\*(C`CR\*(C'\fR, \f(CW\*(C`CRLF\*(C'\fR, or
\&\f(CW\*(C`LF\*(C'\fR) will be removed from the lines returned.
.PP
Because the return is a list, \f(CW\*(C`lines\*(C'\fR in scalar context will return the number
of lines (and throw away the data).
.PP
.Vb 1
\& $number_of_lines = path("/tmp/foo.txt")\->lines;
.Ve
.PP
\&\f(CW\*(C`lines_raw\*(C'\fR is like \f(CW\*(C`lines\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:raw\*(C'\fR. We use \f(CW\*(C`:raw\*(C'\fR
instead of \f(CW\*(C`:unix\*(C'\fR so PerlIO buffering can manage reading by line.
.PP
\&\f(CW\*(C`lines_utf8\*(C'\fR is like \f(CW\*(C`lines\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:raw:encoding(UTF\-8)\*(C'\fR
(or \f(CW\*(C`:raw:utf8_strict\*(C'\fR with PerlIO::utf8_strict). If Unicode::UTF8
0.58+ is installed, a raw, unbuffered \s-1UTF\-8\s0 slurp will be done and then the
lines will be split. This is actually faster than relying on
\&\s-1IO\s0 layers, though a bit memory intensive. If memory use is a
concern, consider \f(CW\*(C`openr_utf8\*(C'\fR and iterating directly on the handle.
.PP
Current \s-1API\s0 available since 0.065.
.SS "mkdir"
.IX Subsection "mkdir"
.Vb 2
\& path("foo/bar/baz")\->mkdir;
\& path("foo/bar/baz")\->mkdir( \e%options );
.Ve
.PP
Like calling \f(CW\*(C`make_path\*(C'\fR from File::Path. An optional hash reference
is passed through to \f(CW\*(C`make_path\*(C'\fR. Errors will be trapped and an exception
thrown. Returns the the path object to facilitate chaining.
.PP
\&\fB\s-1NOTE\s0\fR: unlike Perl's builtin \f(CW\*(C`mkdir\*(C'\fR, this will create intermediate paths
similar to the Unix \f(CW\*(C`mkdir \-p\*(C'\fR command. It will not error if applied to an
existing directory.
.PP
Current \s-1API\s0 available since 0.125.
.SS "mkpath (deprecated)"
.IX Subsection "mkpath (deprecated)"
Like calling \f(CW\*(C`mkdir\*(C'\fR, but returns the list of directories created or an empty list if
the directories already exist, just like \f(CW\*(C`make_path\*(C'\fR.
.PP
Deprecated in 0.125.
.SS "move"
.IX Subsection "move"
.Vb 1
\& path("foo.txt")\->move("bar.txt");
.Ve
.PP
Moves the current path to the given destination using File::Copy's
\&\f(CW\*(C`move\*(C'\fR function. Upon success, returns the \f(CW\*(C`Path::Tiny\*(C'\fR object for the
newly moved file.
.PP
If the destination already exists and is a directory, and the source is not a
directory, then the source file will be renamed into the directory
specified by the destination.
.PP
If possible, \fBmove()\fR will simply rename the file. Otherwise, it
copies the file to the new location and deletes the original. If an
error occurs during this copy-and-delete process, you may be left
with a (possibly partial) copy of the file under the destination
name.
.PP
Current \s-1API\s0 available since 0.124. Prior versions used Perl's
\&\-built\-in (and less robust) rename function
and did not return an object.
.SS "openr, openw, openrw, opena"
.IX Subsection "openr, openw, openrw, opena"
.Vb 3
\& $fh = path("foo.txt")\->openr($binmode); # read
\& $fh = path("foo.txt")\->openr_raw;
\& $fh = path("foo.txt")\->openr_utf8;
\&
\& $fh = path("foo.txt")\->openw($binmode); # write
\& $fh = path("foo.txt")\->openw_raw;
\& $fh = path("foo.txt")\->openw_utf8;
\&
\& $fh = path("foo.txt")\->opena($binmode); # append
\& $fh = path("foo.txt")\->opena_raw;
\& $fh = path("foo.txt")\->opena_utf8;
\&
\& $fh = path("foo.txt")\->openrw($binmode); # read/write
\& $fh = path("foo.txt")\->openrw_raw;
\& $fh = path("foo.txt")\->openrw_utf8;
.Ve
.PP
Returns a file handle opened in the specified mode. The \f(CW\*(C`openr\*(C'\fR style methods
take a single \f(CW\*(C`binmode\*(C'\fR argument. All of the \f(CW\*(C`open*\*(C'\fR methods have
\&\f(CW\*(C`open*_raw\*(C'\fR and \f(CW\*(C`open*_utf8\*(C'\fR equivalents that use buffered I/O layers \f(CW\*(C`:raw\*(C'\fR
and \f(CW\*(C`:raw:encoding(UTF\-8)\*(C'\fR (or \f(CW\*(C`:raw:utf8_strict\*(C'\fR with
PerlIO::utf8_strict).
.PP
An optional hash reference may be used to pass options. The only option is
\&\f(CW\*(C`locked\*(C'\fR. If true, handles opened for writing, appending or read-write are
locked with \f(CW\*(C`LOCK_EX\*(C'\fR; otherwise, they are locked for \f(CW\*(C`LOCK_SH\*(C'\fR.
.PP
.Vb 1
\& $fh = path("foo.txt")\->openrw_utf8( { locked => 1 } );
.Ve
.PP
See \*(L"filehandle\*(R" for more on locking.
.PP
Current \s-1API\s0 available since 0.011.
.SS "parent"
.IX Subsection "parent"
.Vb 2
\& $parent = path("foo/bar/baz")\->parent; # foo/bar
\& $parent = path("foo/wibble.txt")\->parent; # foo
\&
\& $parent = path("foo/bar/baz")\->parent(2); # foo
.Ve
.PP
Returns a \f(CW\*(C`Path::Tiny\*(C'\fR object corresponding to the parent directory of the
original directory or file. An optional positive integer argument is the number
of parent directories upwards to return. \f(CW\*(C`parent\*(C'\fR by itself is equivalent to
\&\f(CWparent(1)\fR.
.PP
Current \s-1API\s0 available since 0.014.
.SS "realpath"
.IX Subsection "realpath"
.Vb 2
\& $real = path("/baz/foo/../bar")\->realpath;
\& $real = path("foo/../bar")\->realpath;
.Ve
.PP
Returns a new \f(CW\*(C`Path::Tiny\*(C'\fR object with all symbolic links and upward directory
parts resolved using Cwd's \f(CW\*(C`realpath\*(C'\fR. Compared to \f(CW\*(C`absolute\*(C'\fR, this is
more expensive as it must actually consult the filesystem.
.PP
If the parent path can't be resolved (e.g. if it includes directories that
don't exist), an exception will be thrown:
.PP
.Vb 1
\& $real = path("doesnt_exist/foo")\->realpath; # dies
.Ve
.PP
However, if the parent path exists and only the last component (e.g. filename)
doesn't exist, the realpath will be the realpath of the parent plus the
non-existent last component:
.PP
.Vb 1
\& $real = path("./aasdlfasdlf")\->realpath; # works
.Ve
.PP
The underlying Cwd module usually worked this way on Unix, but died on
Windows (and some Unixes) if the full path didn't exist. As of version 0.064,
it's safe to use anywhere.
.PP
Current \s-1API\s0 available since 0.001.
.SS "relative"
.IX Subsection "relative"
.Vb 1
\& $rel = path("/tmp/foo/bar")\->relative("/tmp"); # foo/bar
.Ve
.PP
Returns a \f(CW\*(C`Path::Tiny\*(C'\fR object with a path relative to a new base path
given as an argument. If no argument is given, the current directory will
be used as the new base path.
.PP
If either path is already relative, it will be made absolute based on the
current directly before determining the new relative path.
.PP
The algorithm is roughly as follows:
.IP "\(bu" 4
If the original and new base path are on different volumes, an exception will be thrown.
.IP "\(bu" 4
If the original and new base are identical, the relative path is \f(CW"."\fR.
.IP "\(bu" 4
If the new base subsumes the original, the relative path is the original path with the new base chopped off the front
.IP "\(bu" 4
If the new base does not subsume the original, a common prefix path is determined (possibly the root directory) and the relative path will consist of updirs (\f(CW".."\fR) to reach the common prefix, followed by the original path less the common prefix.
.PP
Unlike \f(CW\*(C`File::Spec::abs2rel\*(C'\fR, in the last case above, the calculation based
on a common prefix takes into account symlinks that could affect the updir
process. Given an original path \*(L"/A/B\*(R" and a new base \*(L"/A/C\*(R",
(where \*(L"A\*(R", \*(L"B\*(R" and \*(L"C\*(R" could each have multiple path components):
.IP "\(bu" 4
Symlinks in \*(L"A\*(R" don't change the result unless the last component of A is a symlink and the first component of \*(L"C\*(R" is an updir.
.IP "\(bu" 4
Symlinks in \*(L"B\*(R" don't change the result and will exist in the result as given.
.IP "\(bu" 4
Symlinks and updirs in \*(L"C\*(R" must be resolved to actual paths, taking into account the possibility that not all path components might exist on the filesystem.
.PP
Current \s-1API\s0 available since 0.001. New algorithm (that accounts for
symlinks) available since 0.079.
.SS "remove"
.IX Subsection "remove"
.Vb 1
\& path("foo.txt")\->remove;
.Ve
.PP
This is just like \f(CW\*(C`unlink\*(C'\fR, except for its error handling: if the path does
not exist, it returns false; if deleting the file fails, it throws an
exception.
.PP
Current \s-1API\s0 available since 0.012.
.SS "remove_tree"
.IX Subsection "remove_tree"
.Vb 4
\& # directory
\& path("foo/bar/baz")\->remove_tree;
\& path("foo/bar/baz")\->remove_tree( \e%options );
\& path("foo/bar/baz")\->remove_tree( { safe => 0 } ); # force remove
.Ve
.PP
Like calling \f(CW\*(C`remove_tree\*(C'\fR from File::Path, but defaults to \f(CW\*(C`safe\*(C'\fR mode.
An optional hash reference is passed through to \f(CW\*(C`remove_tree\*(C'\fR. Errors will be
trapped and an exception thrown. Returns the number of directories deleted,
just like \f(CW\*(C`remove_tree\*(C'\fR.
.PP
If you want to remove a directory only if it is empty, use the built-in
\&\f(CW\*(C`rmdir\*(C'\fR function instead.
.PP
.Vb 1
\& rmdir path("foo/bar/baz/");
.Ve
.PP
Current \s-1API\s0 available since 0.013.
.SS "sibling"
.IX Subsection "sibling"
.Vb 3
\& $foo = path("/tmp/foo.txt");
\& $sib = $foo\->sibling("bar.txt"); # /tmp/bar.txt
\& $sib = $foo\->sibling("baz", "bam.txt"); # /tmp/baz/bam.txt
.Ve
.PP
Returns a new \f(CW\*(C`Path::Tiny\*(C'\fR object relative to the parent of the original.
This is slightly more efficient than \f(CW\*(C`$path\->parent\->child(...)\*(C'\fR.
.PP
Current \s-1API\s0 available since 0.058.
.SS "size, size_human"
.IX Subsection "size, size_human"
.Vb 1
\& my $p = path("foo"); # with size 1025 bytes
\&
\& $p\->size; # "1025"
\& $p\->size_human; # "1.1 K"
\& $p\->size_human( {format => "iec"} ); # "1.1 KiB"
.Ve
.PP
Returns the size of a file. The \f(CW\*(C`size\*(C'\fR method is just a wrapper around \f(CW\*(C`\-s\*(C'\fR.
.PP
The \f(CW\*(C`size_human\*(C'\fR method provides a human-readable string similar to
\&\f(CW\*(C`ls \-lh\*(C'\fR. Like \f(CW\*(C`ls\*(C'\fR, it rounds upwards and provides one decimal place for
single-digit sizes and no decimal places for larger sizes. The only available
option is \f(CW\*(C`format\*(C'\fR, which has three valid values:
.IP "\(bu" 4
\&'ls' (the default): base\-2 sizes, with \f(CW\*(C`ls\*(C'\fR style single-letter suffixes (K, M, etc.)
.IP "\(bu" 4
\&'iec': base\-2 sizes, with \s-1IEC\s0 binary suffixes (KiB, MiB, etc.)
.IP "\(bu" 4
\&'si': base\-10 sizes, with \s-1SI\s0 decimal suffixes (kB, \s-1MB,\s0 etc.)
.PP
If \f(CW\*(C`\-s\*(C'\fR would return \f(CW\*(C`undef\*(C'\fR, \f(CW\*(C`size_human\*(C'\fR returns the empty string.
.PP
Current \s-1API\s0 available since 0.122.
.SS "slurp, slurp_raw, slurp_utf8"
.IX Subsection "slurp, slurp_raw, slurp_utf8"
.Vb 4
\& $data = path("foo.txt")\->slurp;
\& $data = path("foo.txt")\->slurp( {binmode => ":raw"} );
\& $data = path("foo.txt")\->slurp_raw;
\& $data = path("foo.txt")\->slurp_utf8;
.Ve
.PP
Reads file contents into a scalar. Takes an optional hash reference which may
be used to pass options. The only available option is \f(CW\*(C`binmode\*(C'\fR, which is
passed to \f(CW\*(C`binmode()\*(C'\fR on the handle used for reading.
.PP
\&\f(CW\*(C`slurp_raw\*(C'\fR is like \f(CW\*(C`slurp\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:unix\*(C'\fR for
a fast, unbuffered, raw read.
.PP
\&\f(CW\*(C`slurp_utf8\*(C'\fR is like \f(CW\*(C`slurp\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of
\&\f(CW\*(C`:unix:encoding(UTF\-8)\*(C'\fR (or \f(CW\*(C`:unix:utf8_strict\*(C'\fR with
PerlIO::utf8_strict). If Unicode::UTF8 0.58+ is installed, a
unbuffered, raw slurp will be done instead and the result decoded with
\&\f(CW\*(C`Unicode::UTF8\*(C'\fR. This is just as strict and is roughly an order of
magnitude faster than using \f(CW\*(C`:encoding(UTF\-8)\*(C'\fR.
.PP
\&\fBNote\fR: \f(CW\*(C`slurp\*(C'\fR and friends lock the filehandle before slurping. If
you plan to slurp from a file created with File::Temp, be sure to
close other handles or open without locking to avoid a deadlock:
.PP
.Vb 2
\& my $tempfile = File::Temp\->new(EXLOCK => 0);
\& my $guts = path($tempfile)\->slurp;
.Ve
.PP
Current \s-1API\s0 available since 0.004.
.SS "spew, spew_raw, spew_utf8"
.IX Subsection "spew, spew_raw, spew_utf8"
.Vb 5
\& path("foo.txt")\->spew(@data);
\& path("foo.txt")\->spew(\e@data);
\& path("foo.txt")\->spew({binmode => ":raw"}, @data);
\& path("foo.txt")\->spew_raw(@data);
\& path("foo.txt")\->spew_utf8(@data);
.Ve
.PP
Writes data to a file atomically. The file is written to a temporary file in
the same directory, then renamed over the original. An optional hash reference
may be used to pass options. The only option is \f(CW\*(C`binmode\*(C'\fR, which is passed to
\&\f(CW\*(C`binmode()\*(C'\fR on the handle used for writing.
.PP
\&\f(CW\*(C`spew_raw\*(C'\fR is like \f(CW\*(C`spew\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:unix\*(C'\fR for a fast,
unbuffered, raw write.
.PP
\&\f(CW\*(C`spew_utf8\*(C'\fR is like \f(CW\*(C`spew\*(C'\fR with a \f(CW\*(C`binmode\*(C'\fR of \f(CW\*(C`:unix:encoding(UTF\-8)\*(C'\fR
(or \f(CW\*(C`:unix:utf8_strict\*(C'\fR with PerlIO::utf8_strict). If Unicode::UTF8
0.58+ is installed, a raw, unbuffered spew will be done instead on the data
encoded with \f(CW\*(C`Unicode::UTF8\*(C'\fR.
.PP
\&\fB\s-1NOTE\s0\fR: because the file is written to a temporary file and then renamed, the
new file will wind up with permissions based on your current umask. This is a
feature to protect you from a race condition that would otherwise give
different permissions than you might expect. If you really want to keep the
original mode flags, use \*(L"append\*(R" with the \f(CW\*(C`truncate\*(C'\fR option.
.PP
Current \s-1API\s0 available since 0.011.
.SS "stat, lstat"
.IX Subsection "stat, lstat"
.Vb 2
\& $stat = path("foo.txt")\->stat;
\& $stat = path("/some/symlink")\->lstat;
.Ve
.PP
Like calling \f(CW\*(C`stat\*(C'\fR or \f(CW\*(C`lstat\*(C'\fR from File::stat.
.PP
Current \s-1API\s0 available since 0.001.
.SS "stringify"
.IX Subsection "stringify"
.Vb 2
\& $path = path("foo.txt");
\& say $path\->stringify; # same as "$path"
.Ve
.PP
Returns a string representation of the path. Unlike \f(CW\*(C`canonpath\*(C'\fR, this method
returns the path standardized with Unix-style \f(CW\*(C`/\*(C'\fR directory separators.
.PP
Current \s-1API\s0 available since 0.001.
.SS "subsumes"
.IX Subsection "subsumes"
.Vb 2
\& path("foo/bar")\->subsumes("foo/bar/baz"); # true
\& path("/foo/bar")\->subsumes("/foo/baz"); # false
.Ve
.PP
Returns true if the first path is a prefix of the second path at a directory
boundary.
.PP
This \fBdoes not\fR resolve parent directory entries (\f(CW\*(C`..\*(C'\fR) or symlinks:
.PP
.Vb 1
\& path("foo/bar")\->subsumes("foo/bar/../baz"); # true
.Ve
.PP
If such things are important to you, ensure that both paths are resolved to
the filesystem with \f(CW\*(C`realpath\*(C'\fR:
.PP
.Vb 3
\& my $p1 = path("foo/bar")\->realpath;
\& my $p2 = path("foo/bar/../baz")\->realpath;
\& if ( $p1\->subsumes($p2) ) { ... }
.Ve
.PP
Current \s-1API\s0 available since 0.048.
.SS "touch"
.IX Subsection "touch"
.Vb 2
\& path("foo.txt")\->touch;
\& path("foo.txt")\->touch($epoch_secs);
.Ve
.PP
Like the Unix \f(CW\*(C`touch\*(C'\fR utility. Creates the file if it doesn't exist, or else
changes the modification and access times to the current time. If the first
argument is the epoch seconds then it will be used.
.PP
Returns the path object so it can be easily chained with other methods:
.PP
.Vb 2
\& # won\*(Aqt die if foo.txt doesn\*(Aqt exist
\& $content = path("foo.txt")\->touch\->slurp;
.Ve
.PP
Current \s-1API\s0 available since 0.015.
.SS "touchpath"
.IX Subsection "touchpath"
.Vb 1
\& path("bar/baz/foo.txt")\->touchpath;
.Ve
.PP
Combines \f(CW\*(C`mkdir\*(C'\fR and \f(CW\*(C`touch\*(C'\fR. Creates the parent directory if it doesn't exist,
before touching the file. Returns the path object like \f(CW\*(C`touch\*(C'\fR does.
.PP
If you need to pass options, use \f(CW\*(C`mkdir\*(C'\fR and \f(CW\*(C`touch\*(C'\fR separately:
.PP
.Vb 1
\& path("bar/baz")\->mkdir( \e%options )\->child("foo.txt")\->touch($epoch_secs);
.Ve
.PP
Current \s-1API\s0 available since 0.022.
.SS "visit"
.IX Subsection "visit"
.Vb 1
\& path("/tmp")\->visit( \e&callback, \e%options );
.Ve
.PP
Executes a callback for each child of a directory. It returns a hash
reference with any state accumulated during iteration.
.PP
The options are the same as for \*(L"iterator\*(R" (which it uses internally):
\&\f(CW\*(C`recurse\*(C'\fR and \f(CW\*(C`follow_symlinks\*(C'\fR. Both default to false.
.PP
The callback function will receive a \f(CW\*(C`Path::Tiny\*(C'\fR object as the first argument
and a hash reference to accumulate state as the second argument. For example:
.PP
.Vb 9
\& # collect files sizes
\& my $sizes = path("/tmp")\->visit(
\& sub {
\& my ($path, $state) = @_;
\& return if $path\->is_dir;
\& $state\->{$path} = \-s $path;
\& },
\& { recurse => 1 }
\& );
.Ve
.PP
For convenience, the \f(CW\*(C`Path::Tiny\*(C'\fR object will also be locally aliased as the
\&\f(CW$_\fR global variable:
.PP
.Vb 2
\& # print paths matching /foo/
\& path("/tmp")\->visit( sub { say if /foo/ }, { recurse => 1} );
.Ve
.PP
If the callback returns a \fBreference\fR to a false scalar value, iteration will
terminate. This is not the same as \*(L"pruning\*(R" a directory search; this just
stops all iteration and returns the state hash reference.
.PP
.Vb 9
\& # find up to 10 files larger than 100K
\& my $files = path("/tmp")\->visit(
\& sub {
\& my ($path, $state) = @_;
\& $state\->{$path}++ if \-s $path > 102400
\& return \e0 if keys %$state == 10;
\& },
\& { recurse => 1 }
\& );
.Ve
.PP
If you want more flexible iteration, use a module like Path::Iterator::Rule.
.PP
Current \s-1API\s0 available since 0.062.
.SS "volume"
.IX Subsection "volume"
.Vb 2
\& $vol = path("/tmp/foo.txt")\->volume; # ""
\& $vol = path("C:/tmp/foo.txt")\->volume; # "C:"
.Ve
.PP
Returns the volume portion of the path. This is equivalent
to what File::Spec would give from \f(CW\*(C`splitpath\*(C'\fR and thus
usually is the empty string on Unix-like operating systems or the
drive letter for an absolute path on \f(CW\*(C`MSWin32\*(C'\fR.
.PP
Current \s-1API\s0 available since 0.001.
.SH "EXCEPTION HANDLING"
.IX Header "EXCEPTION HANDLING"
Simple usage errors will generally croak. Failures of underlying Perl
functions will be thrown as exceptions in the class
\&\f(CW\*(C`Path::Tiny::Error\*(C'\fR.
.PP
A \f(CW\*(C`Path::Tiny::Error\*(C'\fR object will be a hash reference with the following fields:
.IP "\(bu" 4
\&\f(CW\*(C`op\*(C'\fR — a description of the operation, usually function call and any extra info
.IP "\(bu" 4
\&\f(CW\*(C`file\*(C'\fR — the file or directory relating to the error
.IP "\(bu" 4
\&\f(CW\*(C`err\*(C'\fR — hold \f(CW$!\fR at the time the error was thrown
.IP "\(bu" 4
\&\f(CW\*(C`msg\*(C'\fR — a string combining the above data and a Carp-like short stack trace
.PP
Exception objects will stringify as the \f(CW\*(C`msg\*(C'\fR field.
.SH "ENVIRONMENT"
.IX Header "ENVIRONMENT"
.SS "\s-1PERL_PATH_TINY_NO_FLOCK\s0"
.IX Subsection "PERL_PATH_TINY_NO_FLOCK"
If the environment variable \f(CW\*(C`PERL_PATH_TINY_NO_FLOCK\*(C'\fR is set to a true
value then flock will \s-1NOT\s0 be used when accessing files (this is not
recommended).
.SH "CAVEATS"
.IX Header "CAVEATS"
.SS "Subclassing not supported"
.IX Subsection "Subclassing not supported"
For speed, this class is implemented as an array based object and uses many
direct function calls internally. You must not subclass it and expect
things to work properly.
.SS "Tilde expansion (deprecated)"
.IX Subsection "Tilde expansion (deprecated)"
Tilde expansion was a nice idea, but it can't easily be applied consistently
across the entire \s-1API.\s0 This was a source of bugs and confusion for users.
Therefore, it is \fBdeprecated\fR and its use is discouraged. Limitations to the
existing, legacy behavior follow.
.PP
Tilde expansion will only occur if the \fBfirst\fR argument to \f(CW\*(C`path\*(C'\fR begins with
a tilde. \fBNo other method does tilde expansion on its arguments\fR. If you want
tilde expansion on arguments, you must explicitly wrap them in a call to
\&\f(CW\*(C`path\*(C'\fR.
.PP
.Vb 1
\& path( "~/foo.txt" )\->copy( path( "~/bar.txt" ) );
.Ve
.PP
If you need a literal leading tilde, use \f(CW\*(C`path("./~whatever")\*(C'\fR so that the
argument to \f(CW\*(C`path\*(C'\fR doesn't start with a tilde, but the path still resolves to
the current directory.
.PP
Behaviour of tilde expansion with a username for non-existent users depends on
the output of \f(CW\*(C`glob\*(C'\fR on the system.
.SS "File locking"
.IX Subsection "File locking"
If flock is not supported on a platform, it will not be used, even if
locking is requested.
.PP
In situations where a platform normally would support locking, but the
flock fails due to a filesystem limitation, Path::Tiny has some heuristics
to detect this and will warn once and continue in an unsafe mode. If you
want this failure to be fatal, you can fatalize the 'flock' warnings
category:
.PP
.Vb 1
\& use warnings FATAL => \*(Aqflock\*(Aq;
.Ve
.PP
See additional caveats below.
.PP
\fI\s-1NFS\s0 and \s-1BSD\s0\fR
.IX Subsection "NFS and BSD"
.PP
On \s-1BSD,\s0 Perl's flock implementation may not work to lock files on an
\&\s-1NFS\s0 filesystem. If detected, this situation will warn once, as described
above.
.PP
\fILustre\fR
.IX Subsection "Lustre"
.PP
The Lustre filesystem does not support flock. If detected, this situation
will warn once, as described above.
.PP
\fI\s-1AIX\s0 and locking\fR
.IX Subsection "AIX and locking"
.PP
\&\s-1AIX\s0 requires a write handle for locking. Therefore, calls that normally
open a read handle and take a shared lock instead will open a read-write
handle and take an exclusive lock. If the user does not have write
permission, no lock will be used.
.SS "utf8 vs \s-1UTF\-8\s0"
.IX Subsection "utf8 vs UTF-8"
All the \f(CW*_utf8\fR methods by default use \f(CW\*(C`:encoding(UTF\-8)\*(C'\fR \*(-- either as
\&\f(CW\*(C`:unix:encoding(UTF\-8)\*(C'\fR (unbuffered, for whole file operations) or
\&\f(CW\*(C`:raw:encoding(UTF\-8)\*(C'\fR (buffered, for line-by-line operations). These are
strict against the Unicode spec and disallows illegal Unicode codepoints or
\&\s-1UTF\-8\s0 sequences.
.PP
Unfortunately, \f(CW\*(C`:encoding(UTF\-8)\*(C'\fR is very, very slow. If you install
Unicode::UTF8 0.58 or later, that module will be used by some \f(CW*_utf8\fR
methods to encode or decode data after a raw, binary input/output operation,
which is much faster. Alternatively, if you install PerlIO::utf8_strict,
that will be used instead of \f(CW\*(C`:encoding(UTF\-8)\*(C'\fR and is also very fast.
.PP
If you need the performance and can accept the security risk,
\&\f(CW\*(C`slurp({binmode => ":unix:utf8"})\*(C'\fR will be faster than \f(CW\*(C`:unix:encoding(UTF\-8)\*(C'\fR
(but not as fast as \f(CW\*(C`Unicode::UTF8\*(C'\fR).
.PP
Note that the \f(CW*_utf8\fR methods read in \fBraw\fR mode. There is no \s-1CRLF\s0
translation on Windows. If you must have \s-1CRLF\s0 translation, use the regular
input/output methods with an appropriate binmode:
.PP
.Vb 2
\& $path\->spew_utf8($data); # raw
\& $path\->spew({binmode => ":encoding(UTF\-8)"}, $data; # LF \-> CRLF
.Ve
.SS "Default \s-1IO\s0 layers and the open pragma"
.IX Subsection "Default IO layers and the open pragma"
If you have Perl 5.10 or later, file input/output methods (\f(CW\*(C`slurp\*(C'\fR, \f(CW\*(C`spew\*(C'\fR,
etc.) and high-level handle opening methods ( \f(CW\*(C`filehandle\*(C'\fR, \f(CW\*(C`openr\*(C'\fR,
\&\f(CW\*(C`openw\*(C'\fR, etc. ) respect default encodings set by the \f(CW\*(C`\-C\*(C'\fR switch or lexical
open settings of the caller. For \s-1UTF\-8,\s0 this is almost certainly slower
than using the dedicated \f(CW\*(C`_utf8\*(C'\fR methods if you have Unicode::UTF8 or
PerlIP::utf8_strict.
.SH "TYPE CONSTRAINTS AND COERCION"
.IX Header "TYPE CONSTRAINTS AND COERCION"
A standard MooseX::Types library is available at
MooseX::Types::Path::Tiny. A Type::Tiny equivalent is available as
Types::Path::Tiny.
.SH "SEE ALSO"
.IX Header "SEE ALSO"
These are other file/path utilities, which may offer a different feature
set than \f(CW\*(C`Path::Tiny\*(C'\fR.
.IP "\(bu" 4
File::chmod
.IP "\(bu" 4
File::Fu
.IP "\(bu" 4
IO::All
.IP "\(bu" 4
Path::Class
.PP
These iterators may be slightly faster than the recursive iterator in
\&\f(CW\*(C`Path::Tiny\*(C'\fR:
.IP "\(bu" 4
Path::Iterator::Rule
.IP "\(bu" 4
File::Next
.PP
There are probably comparable, non-Tiny tools. Let me know if you want me to
add a module to the list.
.PP
This module was featured in the 2013 Perl Advent Calendar <http://www.perladvent.org/2013/2013-12-18.html>.
.SH "SUPPORT"
.IX Header "SUPPORT"
.SS "Bugs / Feature Requests"
.IX Subsection "Bugs / Feature Requests"
Please report any bugs or feature requests through the issue tracker
at <https://github.com/dagolden/Path\-Tiny/issues>.
You will be notified automatically of any progress on your issue.
.SS "Source Code"
.IX Subsection "Source Code"
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
.PP
<https://github.com/dagolden/Path\-Tiny>
.PP
.Vb 1
\& git clone https://github.com/dagolden/Path\-Tiny.git
.Ve
.SH "AUTHOR"
.IX Header "AUTHOR"
David Golden <dagolden@cpan.org>
.SH "CONTRIBUTORS"
.IX Header "CONTRIBUTORS"
.IP "\(bu" 4
Alex Efros <powerman@powerman.name>
.IP "\(bu" 4
Aristotle Pagaltzis <pagaltzis@gmx.de>
.IP "\(bu" 4
Chris Williams <bingos@cpan.org>
.IP "\(bu" 4
Dan Book <grinnz@grinnz.com>
.IP "\(bu" 4
Dave Rolsky <autarch@urth.org>
.IP "\(bu" 4
David Steinbrunner <dsteinbrunner@pobox.com>
.IP "\(bu" 4
Doug Bell <madcityzen@gmail.com>
.IP "\(bu" 4
Elvin Aslanov <rwp.primary@gmail.com>
.IP "\(bu" 4
Flavio Poletti <flavio@polettix.it>
.IP "\(bu" 4
Gabor Szabo <szabgab@cpan.org>
.IP "\(bu" 4
Gabriel Andrade <gabiruh@gmail.com>
.IP "\(bu" 4
George Hartzell <hartzell@cpan.org>
.IP "\(bu" 4
Geraud Continsouzas <geraud@scsi.nc>
.IP "\(bu" 4
Goro Fuji <gfuji@cpan.org>
.IP "\(bu" 4
Graham Knop <haarg@haarg.org>
.IP "\(bu" 4
Graham Ollis <plicease@cpan.org>
.IP "\(bu" 4
Ian Sillitoe <ian@sillit.com>
.IP "\(bu" 4
James Hunt <james@niftylogic.com>
.IP "\(bu" 4
John Karr <brainbuz@brainbuz.org>
.IP "\(bu" 4
Karen Etheridge <ether@cpan.org>
.IP "\(bu" 4
Mark Ellis <mark.ellis@cartridgesave.co.uk>
.IP "\(bu" 4
Martin H. Sluka <fany@cpan.org>
.IP "\(bu" 4
Martin Kjeldsen <mk@bluepipe.dk>
.IP "\(bu" 4
Mary Ehlers <regina.verb.ae@gmail.com>
.IP "\(bu" 4
Michael G. Schwern <mschwern@cpan.org>
.IP "\(bu" 4
Nicolas R <nicolas@atoomic.org>
.IP "\(bu" 4
Nicolas Rochelemagne <rochelemagne@cpanel.net>
.IP "\(bu" 4
Nigel Gregoire <nigelgregoire@gmail.com>
.IP "\(bu" 4
Philippe Bruhat (BooK) <book@cpan.org>
.IP "\(bu" 4
regina-verbae <regina\-verbae@users.noreply.github.com>
.IP "\(bu" 4
Roy Ivy \s-1III\s0 <rivy@cpan.org>
.IP "\(bu" 4
Shlomi Fish <shlomif@shlomifish.org>
.IP "\(bu" 4
Smylers <Smylers@stripey.com>
.IP "\(bu" 4
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
.IP "\(bu" 4
Toby Inkster <tobyink@cpan.org>
.IP "\(bu" 4
Yanick Champoux <yanick@babyl.dyndns.org>
.IP "\(bu" 4
김도형 \- Keedi Kim <keedi@cpan.org>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
This software is Copyright (c) 2014 by David Golden.
.PP
This is free software, licensed under:
.PP
.Vb 1
\& The Apache License, Version 2.0, January 2004
.Ve
Zerion Mini Shell 1.0