- rmdir FILENAME
- rmdir
-
Deletes the directory specified by FILENAME if that directory is empty. If it succeeds it returns true; otherwise it returns false and sets
$!
(errno). If FILENAME is omitted, uses$_
.FILENAME で指定したディレクトリが空であれば、 そのディレクトリを削除します。 成功時には真を返します; さもなければ偽を返して
$!
(errno) を設定します。 FILENAME を省略した場合には、$_
を使用します。To remove a directory tree recursively (
rm -rf
on Unix) look at thermtree
function of the File::Path module.ディレクトリツリーを再帰的に削除したい (Unix での
rm -rf
) 場合、 File::Path モジュールのrmtree
関数を 参照してください。