如何方便读取当前目录下所有文件?

while(<>){
}

这样读挺方便的啊。
use File::Find;

finddepth sub {
                open(NOWFILE,$File::Find::name);
                print while(<NOWFILE>);
                close(NOWFILE);
},'d:/phproot/perl/grup/';