当前位置:首页 > PHP教程 > php文件操作 > 列表

php删除文件程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-16 15:02:56 浏览: 评论:0 

在php中要删除文件我们需要使用php提供的unlink()文件删除函数,下面我来给大家详细介绍利用unlink删除文件的方法,有需要的朋友可参考本教程。

unlink(filename,context)

例代码如下:

  1. if (unlink($file_delete)) { 
  2. echo "The file was deleted successfully.""n"
  3. else { 
  4. echo "The specified file could not be deleted. Please try again.""n"

判断文件是否存在,代码如下:

  1. $myfile = "./test1.txt"
  2. if (file_exists($myfile)) { 
  3. $result=unlink ($myfile); 
  4. echo $result

批量删除文件,代码如下:

  1. function delFileUnderDir( $dirName="../Smarty/templates/templates_c" ) 
  2. if ( $handle = opendir( "$dirName" ) ) { 
  3.    while ( false !== ( $item = readdir( $handle ) ) ) { 
  4.    if ( $item != "." && $item != ".." ) { 
  5.    if ( is_dir"$dirName/$item" ) ) { 
  6.          delFileUnderDir( "$dirName/$item" ); 
  7.    } else { 
  8.    if( unlink( "$dirName/$item" ) )echo "成功删除文件: $dirName/$item<br />n"
  9.    } 
  10.    } 
  11.    } 
  12.    closedir$handle ); 
  13. }delDirAndFile( 'www.phpfensi.com'); 

删除目录下文件并指定那些不删除,代码如下:

  1. <?php 
  2. header("content-Type: text/html; charset=utf-8"); 
  3. //配置开始 
  4. $path=".";//在些设置所删除的目录.为当前目录 如:删除path目录,引号里请添path; 
  5. $guolv="del.php,install.php,path";//设置需要过滤的文件或文件夹用英文状态下,号分隔 
  6. //配置结束 
  7. if($_GET['action']=="del"){ 
  8.  $file= array_values_recursive(recurdir($path,$guolv)); 
  9.  foreach($file as $k => $v){ 
  10.   remove_directory($v); 
  11.  } 
  12. }else
  13.  echo "您的配置如下<br> 
  14.  要删除的目录为: 
  15.  "; 
  16.  if($path==".")echo "当前目录";else echo $path
  17.  echo "<br>您要过滤的文件或文件夹有:".$guolv."<br> 
  18.  如果确认过滤请<a href='?action=del'>点击此处开始删除相应的目录及目录下的所有文件</a>,如果配置不正确请到文件中修改 
  19.  "; 
  20.  
  21. //删除目录及文件 
  22. function remove_directory($dir) { 
  23.   foreach(glob($diras $fn) { 
  24.     echo " removing $fn<br>n"
  25.   if (!is_writable($fn))@chmod($fn, 0777); 
  26.   if(is_dir($fn)){@rmdir($fn);}else{@unlink($fn);} 
  27.    } 
  28. //扫描目录 
  29. function recurdir($pathname,$guolv='del.php'
  30.  $result=array();$temp=array(); 
  31.  //检查目录是否有效和可读 
  32.  if(!is_dir($pathname) || !is_readable($pathname)) 
  33.  return null; 
  34.  //得到目录下的所有文件夹 
  35.  $allfiles=scandir($pathname); 
  36.  foreach($allfiles as $key => $filename
  37.  { 
  38.   //如果是“.”或者“..”的话则略过 
  39.   if(in_array($filename,array('.','..')))continue
  40.   if(count($guolv)>0){$lv=explode(",",$guolv);if(in_array($filename,$lv))continue;} 
  41.    
  42.   //得到文件完整名字 
  43.   $fullname =$pathname . "/" .$filename
  44.   //如果该文件是目录的话,递归调用recurdir 
  45.   $temp[]=$fullname
  46.   if(is_dir($fullname)){ 
  47.    $nowpath=explode("/",$fullname); 
  48.    if(count($guolv)>0){$lv=explode(",",$guolv);if(in_array($nowpath[count($nowpath)-1],$lv))continue;} 
  49.    $result[$filename] = recurdir($fullname);} 
  50.  }  
  51.  //最后把临时数组中的内容添加到结果数组,确保目录在前,文件在后 
  52.  foreach($temp as $f){ 
  53.   $result[]=$f
  54.  } 
  55.  return $result
  56. //获取所有文件 
  57. function array_values_recursive($ary
  58.    $lst = array(); 
  59.    foreacharray_keys($aryas $k ){ 
  60.   $v = $ary[$k]; 
  61.   if (is_array($v)) {$lst = array_merge$lst, array_values_recursive($v));}else{$lst[] = $v;} 
  62.    } 
  63.    return $lst
  64. ?> 

Tags: php 删除 文件 unlink

分享到: