Re: Is there a built in recursive rmdir and mkdir?

2018-06-03 Thread ToddAndMargo
On 06/03/2018 01:28 PM, Patrick Spek via perl6-users wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Sun, 3 Jun 2018 13:13:31 -0700 ToddAndMargo wrote: Does Perl 6 have a built in recursive rmdir equivalent to LINUX's `rmdir --parents path`? For this, there's `rmtree` in the

Re: Is there a built in recursive rmdir and mkdir?

2018-06-03 Thread ToddAndMargo
On 06/03/2018 01:19 PM, Tom Browder wrote: On Sun, Jun 3, 2018 at 3:13 PM, ToddAndMargo wrote: Hi All, Does Perl 6 have a built in recursive rmdir equivalent to LINUX's `rmdir --parents path`? Searching for "rmdir" on the docs site, and selecting the sub rmdir entry, I see the following:

Re: Is there a built in recursive rmdir and mkdir?

2018-06-03 Thread Patrick Spek via perl6-users
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Sun, 3 Jun 2018 13:13:31 -0700 ToddAndMargo wrote: > Does Perl 6 have a built in recursive rmdir > equivalent to LINUX's `rmdir --parents path`? For this, there's `rmtree` in the `File::Directory::Tree` module. It is referenced in the docs:

Re: Is there a built in recursive rmdir and mkdir?

2018-06-03 Thread Tom Browder
On Sun, Jun 3, 2018 at 3:13 PM, ToddAndMargo wrote: > Hi All, > > Does Perl 6 have a built in recursive rmdir > equivalent to LINUX's `rmdir --parents path`? Searching for "rmdir" on the docs site, and selecting the sub rmdir entry, I see the following: To delete non-empty directory, see