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

8 lines
167 B
Perl
Raw Permalink Normal View History

2013-04-10 12:38:42 -07: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';