unlink LIST
unlink
刪除指定的文件的列表,或由$_指定的文件。因為不能恢複一個被刪除的文件,所以使用此功能時要小心。
刪除的文件數。
#!/usr/bin/perl -w #by www.gitbook.net unlink("/tmp/t1.txt", "/tmp/t2.txt");
這將產生以下結果:
Both the files t1.txt and t2.txt will be deleted from /tmp.