网络营销电子商务研究中心  
How to buy the best prescription safety glasses in Canada? Let's study!
Go Back   网络营销电子商务研究中心 > 网站建设 > 代码交流
User Name
Password
 
FAQ Members List Calendar Cheap Glasses

代码交流 ASP,PHP,JSP等网站源代码下载与交流。

Reply
 
Thread Tools Display Modes
  #1   IP: 117.95.51.125
Old 2009-07-07, 10:26 PM
car car is offline
高级会员
 
Join Date: 2006-05-14
Posts: 534
car 正向着好的方向发展
Default 强制删除目录程序

可能在您的空间内留下一些无法删除的文件,此时您可以用下面的程序删除。
用记事本建一个del.txt文件,其内容如下:
Code:
<?
function myrmdir($parth)
{
$handle=opendir($parth);
while ($file = readdir($handle))
{
if ($file=='..' || $file=='.') continue;
if (is_file($parth.'/'.$file))
{
echo '删除文件:'.$parth.'/'.$file.'<br>';
unlink($parth.'/'.$file);
}
else myrmdir($parth.'/'.$file);
}
closedir($handle);
echo '删除文件夹:'.$parth.'<br>';
rmdir($parth);
}
myrmdir('myparth');
?>
将上面加的myparth修改您想要删除的目录,然后保存del.txt并改其名称为del.php,将del.php上传到你要删除的文件夹所在的目录下,然后在浏览器中浏览del.php,就可以删除此目录下的全部内容了,包括其下的子目录和文件。
警告:使用此程序时,要小心设置路径,设置不当可能会造成意外的文件删除,慎用。
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off

Forum Jump

Prescription-glasses.com offers prescription glasses online at discount prices.
All times are GMT +8. The time now is 10:41 PM.


Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.