#!/usr/bin/perl -w
use strict;
use File::Copy;
use File::Spec;
my($chptr, $base_path, $new, $dir);
$dir = "Full Metal Alchemist"; #Some dir
opendir(FMA, $dir) or die "Can't open FMA dir";
while($chptr = readdir FMA){
$base_path = File::Spec->rel2abs($dir).'/'; #find absolute path of $fir
if($chptr =~ m(Chapter\w*\d*)){ #some regex to avoid the .. and . dirs
$new = join(" 0", split(/\W/, $chptr)); #modify said sub directory
rename "$base_path$chptr", "$base_path$new" ? print "Renames $base_path$chptr to
$base_path$new\n" : die "rename failed $!";
}
}
closedir FMA;
もともと、私のスクリプトは移動操作を実行するために相対パスのみを使用していましたが、何らかの理由で、これによりサブディレクトリは影響を受けません。私の次のステップは、絶対パスに行くことでしたが、役に立ちませんでした。私はPerlを学んでいるので、単純な間違いを犯しているように感じます. どこで間違ったのですか?ティア