Perl 语言获得目录下的所有文件的文件名2015-03-27 本文已影响661人 Waste_Land opendir(DIR,'c:/'); while(my $file = readdir(DIR)){ print $file,"\n"; } closedir(DIR)