weidagang2046的专栏

物格而后知致
随笔 - 8, 文章 - 409, 评论 - 101, 引用 - 0
数据加载中……

删除用通配符匹配的一类文件

unlink 可以用通配符

       unlink LIST
       unlink  Deletes a list of files.  Returns the number of files success-
               fully deleted.

                   $cnt = unlink ’a’, ’b’, ’c’;
                   unlink @goners;
                   unlink <*.bak>;

               Note: "unlink" will not delete directories unless you are supe-
               ruser and the -U flag is supplied to Perl.  Even if these con-
               ditions are met, be warned that unlinking a directory can
               inflict damage on your filesystem.  Use "rmdir" instead.

               If LIST is omitted, uses $_.

posted on 2006-08-17 23:28 weidagang2046 阅读(785) 评论(0)  编辑  收藏 所属分类: Perl


只有注册用户登录后才能发表评论。


网站导航: