RosettaCodeData/Task/Delete-a-file/Perl/delete-a-file.pl

8 lines
167 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use File::Spec::Functions qw(catfile rootdir);
# here
unlink 'input.txt';
rmdir 'docs';
# root dir
unlink catfile rootdir, 'input.txt';
rmdir catfile rootdir, 'docs';