Re: 資料夾無法刪除 - BBS
By Olga
at 2007-11-30T23:24
at 2007-11-30T23:24
Table of Contents
※ 引述《sherlinat (上海灘...)》之銘言:
: 基本上我現在做什麼動作都會出現
: fts_read: Cannot allocate memory
: 難道真的無解了嗎?
用 perl 試試... (網路上看來的... XD)
建立 k.pl 其內容如下...
#### k.pl ####
my $some_dir = '/tmp/k';
chdir $some_dir or die "Can't cd $some_dir: $!";
opendir(DIR, ".") or die "Can't opendir: $!";
while (my $file = readdir(DIR)) {
next if ($file eq '.' || $file eq '..');
unlink $file or warn "Unable to delete $file: $!";
}
closedir DIR;
將 my $some_dir = '/tmp/k'; 的 /tmp/k 改成你要刪除的資料夾名稱...
之後以 perl k.pl 執行...
PS. 只能刪除 /tmp/k/* (檔案), 不能刪除資料夾(會出現 Unable to delete ...)...
--
: 基本上我現在做什麼動作都會出現
: fts_read: Cannot allocate memory
: 難道真的無解了嗎?
用 perl 試試... (網路上看來的... XD)
建立 k.pl 其內容如下...
#### k.pl ####
my $some_dir = '/tmp/k';
chdir $some_dir or die "Can't cd $some_dir: $!";
opendir(DIR, ".") or die "Can't opendir: $!";
while (my $file = readdir(DIR)) {
next if ($file eq '.' || $file eq '..');
unlink $file or warn "Unable to delete $file: $!";
}
closedir DIR;
將 my $some_dir = '/tmp/k'; 的 /tmp/k 改成你要刪除的資料夾名稱...
之後以 perl k.pl 執行...
PS. 只能刪除 /tmp/k/* (檔案), 不能刪除資料夾(會出現 Unable to delete ...)...
--
Tags:
BBS
All Comments
Related Posts
Re: 資料夾無法刪除
By Jacky
at 2007-11-30T20:03
at 2007-11-30T20:03
Re: 資料夾無法刪除
By Enid
at 2007-11-30T15:53
at 2007-11-30T15:53
mount 掛載點
By Hedwig
at 2007-11-30T15:52
at 2007-11-30T15:52
mount 掛載點
By Anonymous
at 2007-11-30T14:47
at 2007-11-30T14:47
bbs與mail server 是否可放在同一台linux上?
By Annie
at 2007-11-30T11:26
at 2007-11-30T11:26