File or directory path
is Cool does IO
IO::Path
is the workhorse of IO operations.
Conceptually, an IO::Path
object consists of a volume, a directory, and a basename. It supports both purely textual operations, and operations that access the filesystem, e.g. to resolve a path, or to read all the content of a file.
At creation, each IO::Path
object is given information about the current working directory the path might be relative to using the $.CWD
attribute (defaults to $*CWD
), as well as what operating system semantics should be used for path manipulation using the special IO::Spec
type given in the $.SPEC
attribute.
The $.SPEC
defaults to the value of $*CWD
, which uses the object suitable for the operating system the code is currently running on. This is the default most code will be comfortable with.
In certain situations, e.g. testing, you may wish to force $*SPEC
to use one of the specific SPEC modules: IO::Spec::Unix
, IO::Spec::Win32
, IO::Spec::Cygwin
, and IO::Spec::QNX
, or to create IO::Path
objects via shortcut subclasses IO::Path::Unix
, IO::Path::Win32
, IO::Path::Cygwin
, and IO::Path::QNX
that pre-set the $.SPEC
attribute for you.
The rest of this document silently assumes Unix semantics in its examples, unless stated otherwise.
multi method new(Str , IO::Spec : = , Str() : = )multi method new(:!, : = '.', : = ''IO::Spec : = , Str() : =)
Creates a new IO::Path
object from a path string (which is being parsed for volume, directory name and basename), or from volume, directory name and basename passed as named arguments.
The path's operation will be performed using :$SPEC
semantics (defaults to current $*CWD
) and will use :$CWD
as the directory the path is relative to (defaults to $*CWD
).
If $path
includes the null byte, it will throw an Exception with a "Cannot use null character (U+0000) as part of the path" message.
IO::Path.new("foo", :CWD</home/camelia>).CWD.say; # OUTPUT: «/home/camelia»
Read-only. Contains implicit or explicit value of :$CWD
argument to .new
.
IO::Path.new("foo", :SPEC(IO::Spec::Unix.new))\.SPEC.^name.say; # OUTPUT: «IO::Spec::Unix»
Read-only. Contains implicit or explicit value of :$SPEC
argument to .new
.
IO::Path.new("foo").path.say; # OUTPUT: «foo»
Read-only. Returns the string the object was constructed from or the value of $SPEC.join($volume, $dirname, $basename)
if multi-part version of .new
was used. NOTE: this does not include the $.CWD
; see IO::Path.absolute
and IO::Path.relative
for stringification options that include $.CWD
.
NOTE: Implementations may cache operations done with this attribute, so modifying its value (via cloning or Proxy) is NOT recommended and may result in broken IO::Path
objects. Create a new IO::Path
object instead.
multi method ACCEPTS(IO::Path: Cool --> Bool)
Coerces the argument to IO::Path
, if necessary. Returns True
if IO::Path.absolute
method on both paths returns the same string. NOTE: it's possible for two paths that superficially point to the same resource to NOT smartmatch as True
, if they were constructed differently and were never fully resolved:
say "foo/../bar".IO ~~ "bar".IO # False
The reason is the two paths above may point to different resources when fully resolved (e.g. if foo
is a symlink). Resolve the paths before smartmatching to check they point to same resource:
say "foo/../bar".IO.resolve(:completely) ~~ "bar".IO.resolve(:completely) # True
method basename(IO::Path:)
Returns the basename part of the path object, which is the name of the filesystem object itself that is referenced by the path.
"docs/README.pod".IO.basename.say; # OUTPUT: «README.pod»"/tmp/".IO.basename.say; # OUTPUT: «tmp»
Note that in IO::Spec::Win32
semantics, the basename
of a Windows share is \
, not the name of the share itself:
IO::Path::Win32.new('//server/share').basename.say; # OUTPUT: «\»
method add(IO::Path: Str() --> IO::Path)
Concatenates a path fragment to the invocant and returns the resultant IO::Path
. If adding ../
to paths that end with a file, you may need to call resolve for the resultant path to be accessible by other IO::Path
methods like dir or open. See also sibling and parent.
"foo/bar".IO.mkdir;"foo/bar".IO.add("meow") .resolve.relative.say; # OUTPUT: «foo/bar/meow»"foo/bar".IO.add("/meow") .resolve.relative.say; # OUTPUT: «foo/bar/meow»"foo/bar".IO.add("meow.txt").resolve.relative.say; # OUTPUT: «foo/bar/meow.txt»"foo/bar".IO.add("../meow") .resolve.relative.say; # OUTPUT: «foo/meow»"foo/bar".IO.add("../../") .resolve.relative.say; # OUTPUT: «.»
method child(IO::Path: Str() --> IO::Path)
Alias for .add
.
method cleanup(IO::Path: --> IO::Path)
Returns a new path that is a canonical representation of the invocant path, cleaning up any extraneous path parts:
"foo/./././..////bar".IO.cleanup.say; # OUTPUT: «"foo/../bar".IO»IO::Path::Win32.new("foo/./././..////bar").cleanup.say; "foo\..\bar".IO; # OUTPUT: «"foo\..\bar".IO»
Note that no filesystem access is made. See also resolve.
method comb(IO::Path: |args --> Seq)
Opens the file and processes its contents the same way Str.comb
does, taking the same arguments. Implementations may slurp the file in its entirety when this method is called.
method split(IO::Path: |args --> Seq)
Opens the file and processes its contents the same way Str.split
does, taking the same arguments. Implementations may slurp the file in its entirety when this method is called.
multi method extension(IO::Path: --> Str)multi method extension(IO::Path: Int : --> Str)multi method extension(IO::Path: Range : --> Str)multi method extension(IO::Path: Str , Int :, Str : --> IO::Path)multi method extension(IO::Path: Str , Range :, Str : --> IO::Path)
Returns the extension consisting of $parts
parts (defaults to 1
), where a "part" is defined as a dot followed by possibly-empty string up to the end of the string, or previous part. That is "foo.tar.gz"
has an extension of two parts: first part is "gz"
and second part is "tar"
and calling "foo.tar.gz".IO.extension: :2parts
gives "tar.gz"
. If an extension with the specified number of $parts
is not found, returns an empty string.
$parts
can be a Range
, specifying the minimum number of parts and maximum number of parts the extension should have. The routine will attempt to much the most parts it can. If $parts
range's endpoints that are smaller than 0
they'll be treated as 0
; implementations may treat endpoints larger than 2⁶³-1
as 2⁶³-1
. Ranges with NaN
or Str
endpoints will cause an exception to be thrown.
If $subst
is provided, the extension will be instead replaced with $subst
and a new IO::Path
object will be returned. It will be joined to the file's name with $joiner
, which defaults to an empty string when $subst
is an empty string and to "."
when $subst
is not empty. Note: if as the result of replacement the basename
of the path ends up being empty, it will be assumed to be .
(a single dot).
# Getting an extension:say "foo.tar.gz".IO.extension; # OUTPUT: «gz»say "foo.tar.gz".IO.extension: :2parts; # OUTPUT: «tar.gz»say "foo.tar.gz".IO.extension: :parts(^5); # OUTPUT: «tar.gz»say "foo.tar.gz".IO.extension: :parts(0..1); # OUTPUT: «gz»# Replacing an extensionsay "foo.tar.gz".IO.extension: ''; # OUTPUT: «"foo.tar".IO»say "foo.tar.gz".IO.extension: 'ZIP'; # OUTPUT: «"foo.tar.ZIP".IO»say "foo.tar.gz".IO.extension: 'ZIP', :0parts; # OUTPUT: «"foo.tar.gz.ZIP".IO»say "foo.tar.gz".IO.extension: 'ZIP', :2parts; # OUTPUT: «"foo.ZIP".IO»say "foo.tar.gz".IO.extension: 'ZIP', :parts(^5); # OUTPUT: «"foo.ZIP".IO»# Replacing an extension using non-standard joiner:say "foo.tar.gz".IO.extension: '', :joiner<_>; # OUTPUT: «"foo.tar_".IO»say "foo.tar.gz".IO.extension: 'ZIP', :joiner<_>; # OUTPUT: «"foo.tar_ZIP".IO»say "foo.tar.gz".IO.extension: 'ZIP', :joiner<_>,:2parts; # OUTPUT: «"foo_ZIP".IO»say "foo.tar.gz".IO.extension: 'ZIP', :joiner<_>,:parts(^5); # OUTPUT: «"foo_ZIP".IO»# EDGE CASES:# There is no 5-part extension, so returned value is an empty stringsay "foo.tar.gz".IO.extension: :5parts; # OUTPUT: «»# There is no 5-part extension, so we replaced nothing:say "foo.tar.gz".IO.extension: 'ZIP', :5parts; # OUTPUT: «"foo.tar.gz".IO»# Replacing a 0-part extension is just appending:say "foo.tar.gz".IO.extension: 'ZIP', :0parts; # OUTPUT: «"foo.tar.gz.ZIP".IO»# Replace 1-part of the extension, using '.' joinersay "...".IO.extension: 'tar'; # OUTPUT: «"...tar".IO»# Replace 1-part of the extension, using empty string joinersay "...".IO.extension: 'tar', :joiner(''); # OUTPUT: «"..tar".IO»# Remove 1-part extension; results in empty basename, so result is ".".IOsay ".".IO.extension: ''; # OUTPUT: «".".IO»
method dirname(IO::Path:)
Returns the directory name portion of the path object. That is, it returns the path excluding the volume and the basename
. Unless the dirname consist of only the directory separator (i.e. it's the top directory), the trailing directory separator will not be included in the return value.
say IO::Path.new("/home/camelia/myfile.p6").dirname; # OUTPUT: «/home/camelia»say IO::Path::Win32.new("C:/home/camelia").dirname; # OUTPUT: «/home»say IO::Path.new("/home").dirname; # OUTPUT: «/»
method volume(IO::Path:)
Returns the volume portion of the path object. On Unix system, this is always the empty string.
say IO::Path::Win32.new("C:\\Windows\\registry.ini").volume; # OUTPUT: «C:»
method parts(IO::Path:)
Returns a IO::Path::Parts
for the invocant.
say IO::Path::Win32.new("C:/rakudo/raku.bat").parts.raku;# OUTPUT: «IO::Path::Parts.new("C:","/rakudo","raku.bat")»
Note: Before Rakudo version 2020.06 a Map
was returned, with the keys volume
, dirname
, basename
whose values were the respective invocant parts.
method raku(IO::Path: --> Str)
Returns a string that, when given passed through EVAL
gives the original invocant back.
"foo/bar".IO.raku.say;# OUTPUT: IO::Path.new("foo/bar", :SPEC(IO::Spec::Unix), :CWD("/home/camelia"))
Note that this string includes the value of the .CWD
attribute that is set to $*CWD
when the path object was created, by default.
method gist(IO::Path: --> Str)
Returns a string, part of which contains either the value of .absolute
(if path is absolute) or .path
. Note that no escaping of special characters is made, so e.g. "\b"
means a path contains a backslash and letter "b", not a backspace.
say "foo/bar".IO; # OUTPUT: «"foo/bar".IO»say IO::Path::Win32.new: 「C:\foo/bar\」; # OUTPUT: «"C:\foo/bar\".IO»
method Str(IO::Path: --> Str)
Alias for IO::Path.path
. In particular, note that default stringification of an IO::Path
does NOT use the value of $.CWD
attribute. To stringify while retaining full path information use IO::Path.absolute
or IO::Path.relative
methods.
method succ(IO::Path: --> IO::Path)
Returns a new IO::Path constructed from the invocant, with basename
changed by calling Str.succ
on it.
"foo/file02.txt".IO.succ.say; # OUTPUT: «"foo/file03.txt".IO»
method open(IO::Path: *)
Opens the path as a file; the named options control the mode, and are the same as the open function accepts.
method pred(IO::Path: --> IO::Path)
Returns a new IO::Path constructed from the invocant, with basename
changed by calling Str.pred
on it.
"foo/file02.txt".IO.pred.say; # OUTPUT: «"foo/file01.txt".IO»
method watch(IO::Path: --> Supply)
Equivalent to calling IO::Notification.watch-path with the invocant as the argument.
method is-absolute(IO::Path: --> Bool)
Returns True
if the path is an absolute path, and False
otherwise.
"/foo".IO.is-absolute.say; # OUTPUT: «True»"bars".IO.is-absolute.say; # OUTPUT: «False»
Note that on Windows a path that starts with a slash or backslash is still considered absolute even if no volume was given, as it is absolute for that particular volume:
IO::Path::Win32.new("/foo" ).is-absolute.say; # OUTPUT: «True»IO::Path::Win32.new("C:/foo").is-absolute.say; # OUTPUT: «True»IO::Path::Win32.new("C:foo" ).is-absolute.say; # OUTPUT: «False»
method is-relative(IO::Path: --> Bool)
Returns True
if the path is a relative path, and False
otherwise. Windows caveats for .is-absolute
apply.
multi method absolute(IO::Path: --> Str)multi method absolute(IO::Path: --> Str)
Returns a new Str
object that is an absolute path. If the invocant is not already an absolute path, it is first made absolute using $base
as base, if it is provided, or the .CWD
attribute the object was created with if it is not.
method relative(IO::Path: = --> Str)
Returns a new Str
object with the path relative to the $base
. If $base
is not provided, $*CWD
is used in its place. If the invocant is not an absolute path, it's first made to be absolute using the .CWD
attribute the object was created with, and then is made relative to $base
.
multi method parent(IO::Path:)multi method parent(IO::Path: UInt )
Returns the parent path of the invocant. Note that no actual filesystem access is made, so the returned parent is physical and not the logical parent of symlinked directories.
'/etc/foo'.IO.parent.say; # OUTPUT: «"/etc".IO»'/etc/..' .IO.parent.say; # OUTPUT: «"/etc".IO»'/etc/../'.IO.parent.say; # OUTPUT: «"/etc".IO»'./' .IO.parent.say; # OUTPUT: «"..".IO»'foo' .IO.parent.say; # OUTPUT: «".".IO»'/' .IO.parent.say; # OUTPUT: «"/".IO»IO::Path::Win32.new('C:/').parent.say; # OUTPUT: «"C:/".IO»
If $level
is specified, the call is equivalent to calling .parent()
$level
times:
say "/etc/foo".IO.parent(2) eqv "/etc/foo".IO.parent.parent; # OUTPUT: «True»
method resolve(IO::Path: : --> IO::Path)
Returns a new IO::Path
object with all symbolic links and references to the parent directory (..
) resolved. This means that the filesystem is examined for each directory in the path, and any symlinks found are followed.
# bar is a symlink pointing to "/baz"my = "foo/./bar/..".IO.resolve; # now "/" (the parent of "/baz")
If :$completely
, which defaults to False
, is set to a true value, the method will fail
with X::IO::Resolve
if it cannot completely resolve the path, otherwise, it will resolve as much as possible, and will merely perform cleanup
of the rest of the path. The last part of the path does NOT have to exist to :$completely
resolve the path.
NOTE: Currently (April 2017) this method doesn't work correctly on all platforms, e.g. Windows, since resolve
assumes POSIX semantics.
multi sub dir(*)multi sub dir(IO::Path , |c)multi sub dir(IO() , |c)method dir(IO::Path: Mu : = .curupdir)
Returns the contents of a directory as a lazy list of IO::Path
objects representing relative paths, filtered by smartmatching their names (as strings) against the :test
parameter. The path of returned files will be absolute or relative depending on what $path
is.
Since the tests are performed against Str
arguments, not IO
, the tests are executed in the $*CWD
, instead of the target directory. When testing against file test operators, this won't work:
dir('mydir', test => )
while this will:
dir('mydir', test => )
NOTE: a dir
call opens a directory for reading, which counts towards maximum per-process open files for your program. Be sure to exhaust returned Seq before doing something like recursively performing more dir
calls. You can exhaust it by assigning to a @-
sigiled variable or simply looping over it. Note how examples below push further dirs to look through into an Array, rather than immediately calling dir
on them. See also IO::Dir
module that gives you finer control over closing dir handles.
Examples:
# To iterate over the contents of the current directory:for dir() -># As before, but include even '.' and '..' which are filtered out by# the default :test matcher:for dir(test => *) -># To get the names of all .jpg and .jpeg files in the home directory of the current user:my = .dir: test => /:i '.' jpe?g $/;
An example program that lists all files and directories recursively:
sub MAIN( = '.')
A lazy way to find the first three files ending in ".p6" recursively starting from the current directory:
my = '.'.IO;my = gather while.put for [^3];
For most file tests, you can do a smartmatch ~~
or you can call a method. You don't need to actually open a filehandle in the traditional way (although you can) to do a filetest. You can simply append .IO
to the filename and smartmatch it to a test adverb. For instance, here is how to check whether a file is readable using smartmatch:
'/path/to/file'.IO ~~ :r;
File tests include:
:d
(Directory)
:e
(Exists)
:f
(File)
:l
(Symbolic link)
:r
(Readable)
:rw
(Readable and writable)
:s
(Size)
:w
(Writable)
:x
(Executable)
:z
(Zero size)
These tests will not cache the results of earlier test executions.
Smartmatching on Pairs can be used to perform multiple tests at once:
say :d & :x; # OUTPUT: «all(d => True, x => True)»say '/tmp'.IO ~~ :d & :x; # OUTPUT: «True»say '/'.IO ~~ :d & :rw; # OUTPUT: «False»
All of the above tests can be used as methods (without the colon), though method tests may throw X::IO::DoesNotExist
as documented below. Three tests only exist as methods: accessed
, changed
and modified
.
You can also perform file tests on an already opened filehandle by testing against its .path
method. For example, given filehandle $fh
:
.path ~~ :r;.path.r; # method form
method e(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists.
method d(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is a directory. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method f(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is a file. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method s(IO::Path: --> Int)
Returns the file size in bytes. May be called on paths that are directories, in which case the reported size is dependent on the operating system. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
say .IO.s; # OUTPUT: «467»
method l(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is a symlink. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method r(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is accessible. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method w(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is writable. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method rw(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is readable and writable. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method x(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is executable. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
NOTE: If the file is a script (an executable text file and not a native executable), and the file has only executable permissions and no read permissions, this method will return True
but trying to execute will fail. That is a limitation of the operating system.
method rwx(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and is executable, readable, and writable. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method z(IO::Path: --> Bool)
Returns True
if the invocant is a path that exists and has size of 0
. May be called on paths that are directories, in which case the reported file size (and thus the result of this method) is dependent on the operating system. The method will fail
with X::IO::DoesNotExist
if the path points to a non-existent filesystem entity.
method sibling(IO::Path: Str() --> IO::Path)
Allows to reference a sibling file or directory. Returns a new IO::Path based on the invocant, with the .basename
changed to $sibling
. The $sibling
is allowed to be a multi-part path fragment; see also .add
.
say '.bashrc'.IO.sibling: '.bash_aliases'; # OUTPUT: «.bash_aliases".IO»say '/home/camelia/.bashrc'.IO.sibling: '.bash_aliases';# OUTPUT: «/home/camelia/.bash_aliases".IO»say '/foo/' .IO.sibling: 'bar'; # OUTPUT: «/bar".IO»say '/foo/.'.IO.sibling: 'bar'; # OUTPUT: «/foo/bar".IO»
method words(IO::Path: : = True, : = 'utf8', : = ["\x0A", "\r\n"], |c --> Seq)
Opens the invocant and returns its words.
The behavior is equivalent to open the file specified by the invocant, forwarding the :$chomp
, :$enc
, and :$nl-in
arguments to IO::Handle.open
, then calling words on that handle, forwarding any of the remaining arguments to that method, and returning the resultant Seq.
NOTE: words are lazily read. The handle used under the hood is not closed until the returned Seq is fully reified, and this could lead to leaking open filehandles. It is possible to avoid leaking open filehandles using the words to cut down the Seq
of words to be generated.
my := bag 'my-file.txt'.IO.words;say "Most common words: ", .sort(-*.value).head: 5;
method lines(IO::Path: : = True, : = 'utf8', : = ["\x0A", "\r\n"], |c --> Seq)
Opens the invocant and returns its lines.
The behavior is equivalent to open the file specified by the invocant, forwarding the :$chomp
, :$enc
, and :$nl-in
arguments to IO::Handle.open
, then calling lines on that handle, forwarding any of the remaining arguments to that method, and returning the resultant Seq.
NOTE: the lines are ready lazily and the handle used under the hood won't get closed until the returned Seq is fully reified, so ensure it is, or you'll be leaking open filehandles. (TIP: use the lines)
say "The file contains ",'50GB-file'.IO.lines.grep(*.contains: 'Raku').elems," lines that mention Raku";# OUTPUT: «The file contains 72 lines that mention Raku»
multi method slurp(IO::Path: :, :)
Read all of the file's content and return it as either Buf, if :$bin
is True
, or if not, as Str
decoded with :$enc
encoding, which defaults to utf8
. File will be closed afterwards. See open for valid values for :$enc
.
method spurt(IO::Path: , :, :, :)
Opens the path for writing, and writes all of the $data
into it. File will be closed afterwards. Will fail
if it cannot succeed for any reason. The $data
can be any Cool
type or any Blob
type. Arguments are as follows:
:$enc
— character encoding of the data. Takes same values as :$enc
in open. Defaults to utf8
. Ignored if $data
is a Blob
.
:$append
— open the file in append
mode, preserving existing contents, and appending data to the end of the file.
:$createonly
— fail
if the file already exists.
multi method chdir(IO::Path: IO , |c)multi method chdir(IO::Path: Str() , : = True, :, :, :)
Contrary to the name, the .chdir
method does not change any directories, but merely concatenates the given $path
to the invocant and returns the resultant IO::Path
. Optional file tests can be performed by providing :d
, :r
, :w
, or :x
Bool
named arguments; when set to True
, they'll perform .d
, .r
, .w
, and .x
tests respectively. By default, only :d
is set to True
.
method mkdir(IO::Path: Int() = 0o777 --> IO::Path)
Creates a new directory, including its parent directories, as needed (similar to *nix utility mkdir
with -p
option). That is, mkdir "foo/bar/ber/meow"
will create foo
, foo/bar
, and foo/bar/ber
directories as well if they do not exist.
Returns the IO::Path object pointing to the newly created directory on success; fail
with X::IO::Mkdir if directory cannot be created.
See also mode
for explanation and valid values for $mode
.
sub rmdir(* --> List)method rmdir(IO::Path: --> True)
Remove the invocant, or in sub form, all of the provided directories in the given list, which can contain any Cool
object. Only works on empty directories.
Method form returns True
on success and returns a Failure of type X::IO::Rmdir
if the directory cannot be removed (e.g. the directory is not empty, or the path is not a directory). Subroutine form returns a list of directories that were successfully deleted.
To delete non-empty directory, see rmtree in File::Directory::Tree
module.
method chmod(IO::Path: Int() --> Bool)
Changes the POSIX permissions of a file or directory to $mode
. Returns True
on success; on failure, fail
with X::IO::Chmod.
The mode is expected as an integer following the standard numeric notation, and is best written as an octal number:
'myfile'.IO.chmod(0o444); # make a file read-only'somedir'.IO.chmod(0o777); # set 0777 permissions on a directory
Make sure you don't accidentally pass the intended octal digits as a decimal number (or string containing a decimal number):
'myfile'.IO.chmod: '0444'; # BAD!!! (interpreted as mode 0o674)'myfile'.IO.chmod: '0o444'; # OK (an octal in a string)'myfile'.IO.chmod: 0o444; # Also OK (an octal literal)
method rename(IO::Path: IO() , : = False --> Bool)sub rename(IO() , IO() , : = False --> Bool)
Renames a file or directory. Returns True
on success; fail
with X::IO::Rename if :$createonly
is True
and the $to
path already exists or if the operation failed for some other reason.
Note: some renames will always fail, such as when the new name is on a different storage device. See also: move
.
method copy(IO::Path: IO() , : --> Bool)sub copy(IO() , IO() , : --> Bool)
Copies a file. Returns True
on success; fail
with X::IO::Copy if :$createonly
is True
and the $to
path already exists or if the operation failed for some other reason, such as when $to
and $from
are the same file.
method move(IO::Path: IO() , : --> Bool)sub move(IO() , IO() , : --> Bool)
Copies a file and then removes the original. If removal fails, it's possible to end up with two copies of the file. Returns True
on success; fail
with X::IO::Move if :$createonly
is True
and the $to
path already exists or if the operation failed for some other reason, such as when $to
and $from
are the same file.
To avoid copying, you can use rename
, if the files are on the same storage device. It also works with directories, while move
does not.
method Numeric(IO::Path: --> Numeric)
Coerces basename
to Numeric. fail
with X::Str::Numeric
if base name is not numerical.
method Int(IO::Path: --> Int)
Coerces basename
to Int. fail
with X::Str::Numeric
if base name is not numerical.
method symlink(IO::Path : IO() , Bool : = True --> Bool)sub symlink( IO() , IO() , Bool : = True --> Bool)
Create a new symbolic link $link
to existing $target
. Returns True
on success; fail
with X::IO::Symlink if the symbolic link could not be created. If $target
does not exist, creates a dangling symbolic link.
symlink
creates a symbolic link using an absolute path by default. To create a relative symlink set the absolute
parameter to False
e.g. :!absolute
. This flag was introduced in Rakudo version 2020.11.
To create a hard link, see link
.
Note: on Windows, creation of symbolic links may require escalated privileges.
method link(IO::Path : IO() --> Bool)sub link( IO() , IO() --> Bool)
Create a new hard link $link
to existing $target
. Returns True
on success; fail
with X::IO::Link if the hard link could not be created. To create a symbolic link, see symlink
.
method unlink(IO::Path: --> True)sub unlink(* --> List)
Delete all specified ordinary files, links, or symbolic links for which there are privileges to do so. See rmdir to delete directories.
The subroutine form returns the names of all the files in the list, excluding those for which the filesystem raised some error; since trying to delete a file that does not exist does not raise any error at that level, this list will include the names of the files in the list that do not exist.
The method form returns True
on success, or fail
with X::IO::Unlink if the operation could not be completed. If the file to be deleted does not exist, the routine treats it as success.
'foo.txt'.IO.open(:w).close;'bar'.IO.mkdir;say unlink <foo.txt bar not-there.txt>; # OUTPUT: «[foo.txt not-there.txt]»# `bar` is not in output because it failed to delete (it's a directory)# `not-there.txt` is present. It never existed, so that's deemed a success.# Method form `fail`s:say .exception.message without 'bar'.IO.unlink;# OUTPUT: «Failed to remove the file […] illegal operation on a directory»
method IO(IO::Path: --> IO::Path)
Returns the invocant.
method SPEC(IO::Path: --> IO::Spec)
Returns the IO::Spec
object that was (implicitly) specified at object creation time.
my = IO::Path.new("/bin/bash");say .SPEC; # OUTPUT: «(Unix)»say .SPEC.dir-sep; # OUTPUT: «/»
There are also 3 methods for fetching the 3 timestamps of a file (inode), on Operating Systems where these are available:
Returns an Instant
object indicating when the content of the file was last modified. Compare with changed.
say "path/to/file".IO.modified; # Instant:1424089165say "path/to/file".IO.modified.DateTime; # 2015-02-16T12:18:50Z
Return an Instant
object representing the timestamp when the file was last accessed. Note: depending on how the filesystem was mounted, the last accessed time may not update on each access to the file, but only on the first access after modifications.
say "path/to/file".IO.accessed; # Instant:1424353577say "path/to/file".IO.accessed.DateTime; # 2015-02-19T13:45:42Z
Returns an Instant
object indicating the metadata of the file or directory was last changed (e.g. permissions, or files created/deleted in directory). Compare with modified.
say "path/to/file".IO.changed; # Instant:1424089165say "path/to/file".IO.changed.DateTime; # 2015-02-16T12:18:50Z
Return an IntStr object representing the POSIX permissions of a file. The Str
part of the result is the octal representation of the file permission, like the form accepted by the chmod(1)
utility.
say ~"path/to/file".IO.mode; # e.g. '0644'say +"path/to/file".IO.mode; # e.g. 420, where sprintf('%04o', 420) eq '0644'
The result of this can be used in the other methods that take a mode as an argument.
"path/to/file1".IO.chmod("path/to/file2".IO.mode); # will change the# permissions of file1# to be the same as file2