- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Perl/ファイルシステム/ファイル・ディレクトリ操作 (Path-Class) へ行く。
- 1 (2011-01-03 (月) 17:35:37)
- 2 (2011-01-03 (月) 18:01:26)
- 3 (2011-06-11 (土) 05:53:14)
ファイル・ディレクトリ操作
Path::Classを使う。
あるディレクトリ内のファイル(ディレクトリ)を全削除
my $dir = dir('tmp'); foreach my $ent ($dir->children) { $ent->remove(); }