請記住從PHP文件創建的教訓,我們創建了一個文件,名為testFile.txt 。
$myFile = "testFile.txt"; $fh = fopen($myFile, 'w') or die("can't open file"); fclose($fh); 判斷是否刪除了. http://www.manongjc.com/article/1351.html $myFile = "testFile.txt"; unlink($myFile);
例
$filename = 'file.txt'; fopen($filename,'a+'); if(!unlink($filename)) { echo "文件{$filename}刪除失敗"; // http://www.manongjc.com/article/1351.html } else { echo "文件{$filename}刪除成功"; } ?>
刪除目錄下所有文件
function delFileUnderDir( $dirName="../Smarty/templates/templates_c" ) { // http://www.manongjc.com/article/1351.html if ( $handle = opendir( "$dirName" ) ) { while ( false !== ( $item = readdir( $handle ) ) ) { if ( $item != "." && $item != ".." ) { if ( is_dir( "$dirName/$item" ) ) { delFileUnderDir( "$dirName/$item" ); } else { if( unlink( "$dirName/$item" ) )echo "成功刪除文件: $dirName/$item<br />n"; } } } closedir( $handle ); } }