Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
unlink
`unlink(LIST)'
`unlink LIST'
リストされたファイルを消去する。消去に成功したファイルの数を返す。
$cnt = unlink 'a', 'b', 'c'; unlink @goners; unlink <*.bak>;
注意:
unlink
はスーパーユーザであって かつ perl に
-U
フラグを指定していないかぎりディレクトリは消去しない。 これらの条件にあてはまっている場合でも、 ディレクトリを
unlink
することは ファイルシステムにダメージを与えることに注意せよ。 かわりに
rmdir
を使うこと。
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.