Perl处理文件及文件夹

本文最后更新于:2021年7月29日 下午

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use FindBin qw($Bin);

#遍历文件夹
my $fileReportDir = $Bin; #出报告所在的文件夹地址
if(-e $fileReportDir){
opendir DIR, $fileReportDir || die "Error in opening dir $fileReportDir\n";
while( my $file = readdir(DIR)){
next if $file eq ".";
next if $file eq "..";
my $fileAll = $fileReportDir."/".$file;
if(!unlink($fileAll)){
print "=====程序终止!=====\n删除表格(".$fileAll.")失败,请手动删除\n";
#保留黑框
system pause;
#程序停止运行
die;
}
}
closedir DIR;
}

#读取文件内容
open FILE, "<$file" || die "Not Found file: $file\n";
while (<FILE>){
my ($gene,$chr) = (split /\t/,$_)[0,1];
}
close FILE;


如果这篇文章对你有帮助,或者想给我微小的工作一点点资瓷,请随意打赏。
潘高 微信支付

微信支付

潘高 支付宝

支付宝


Perl处理文件及文件夹
https://blog.pangao.vip/Perl处理文件及文件夹/
作者
潘高
发布于
2017年9月26日 下午
更新于
2021年7月29日 下午
许可协议