http://qs321.pair.com?node_id=1041542


in reply to archive::zip how to delete files after creating the zip.

Are you looking for unlink?
unlink 'file01.dat';

Replies are listed 'Best First'.
Re^2: archive::zip how to delete files after creating the zip.
by rjt (Curate) on Jun 30, 2013 at 09:11 UTC

    Are you looking for unlink?

    I doubt the OP was looking for unlink, as they specifically asked how to delete files and directories, and unlink only deletes regular files1.

    ____________

    1 unlink can delete directories under certain somewhat unusual conditions, but such use is not recommended. From unlink:

    Note: unlink will not attempt to delete directories unless you are superuser and the -U flag is supplied to Perl. Even if these conditions are met, be warned that unlinking a directory can inflict damage on your filesystem. Finally, using unlink on directories is not supported on many operating systems. Use rmdir instead.

    rmdir only deletes empty directories, and its documentation specifically suggests File::Path, as I've already suggested.