我無法更改perl中的dir。如何在perl中更改目錄?
#!/usr/bin/perl
use strict;
my $dir=`date +%d%b%Y`;
#the output of $dir is 13Feb2014 that directory is already inside "/mnt/Recordings/Inbound/Kinrep/"
my $path = "/mnt/Recordings/Inbound/Kinrep/$dir";
chdir($path) or die "Cant chdir to $path $!";
每當我執行我的計劃我不能改變我得到以下錯誤的目錄。
Cant chdir to /mnt/Recordings/Inbound/Kinrep/13Feb2014
No such file or directory at Ftp_transfer_197.pl line 17.
該目錄是否存在?如果沒有,'system「mkdir $ path」;'應該可以幫助你。 – DeVadder