Perl使用chdir的实例代码
Perl使用chdir的实例代码
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:usestrict;usewarnings;#Printallfilesinadirectorysubprint_file...

复制代码 代码如下:

use strict;

use warnings;

# Print all files in a directory

sub print_files {

my $dir = 'd:/code';

opendir DIR, $dir or die $!;

my @files = readdir DIR;

chdir $dir; # Use chdir or -f will not work, since -f need absolutely path

foreach my $file (@files) {

if (-f $file) {

print "$filen";

}

}

closedir DIR;

}

&print_files();

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新perl学习
热门perl学习
脚本专栏子分类