孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年9月28日

摘要: 1、使用find use strict; use File::Find; my @path = 'e:/xampp'; push (@path,'e:/xampp'); push (@path,'d:/eclipse-reporting-galileo-SR2-win32'); sub wanted { if ( -f $File::Find::name ) { if ( $File::Find::name =~ /\.xml$/ ) { print "$File::Find::name\n"; } } } find( \&wanted, @path ); 阅读全文
posted @ 2011-09-28 22:53 孤独的猫 阅读(2523) 评论(0) 推荐(0) 编辑