我想删除在我的localhost中找到的文件。
localhost/project/folder/file_to_delete
我正在使用codeigniter。
我想在php中使用unlink()函数,但我真的无法理解如何使用它。
答案 0 :(得分:31)
您可以在codeigniter中使用“文件助手”。
http://codeigniter.com/user_guide/helpers/file_helper.html
并且像这样:
$this->load->helper("file");
delete_files($path);
延迟编辑: delete_files
方法使用路径通过unlink()
清除其所有内容,您可以在CI中执行相同操作。像这样:
unlink($path);
有效路径。
答案 1 :(得分:8)
http://php.net/manual/en/function.unlink.php
这是理解的最佳方式。 读吧!
$path_to_file = '/project/folder/file_to_delete';
if(unlink($path_to_file)) {
echo 'deleted successfully';
}
else {
echo 'errors occured;
}
答案 2 :(得分:6)
删除文件使用
unlink($file_name);
或删除目录使用
rmdir($dir);
答案 3 :(得分:4)
试试这个,这对我有用:
unlink("./path/to/folder/file_name_do_delete");
例如:我将我的文件放在应用程序文件夹之外的uploads文件夹中,我的文件名是123.jpg。所以它应该是这样的:
unlink("./uploads/123.jpg");
答案 4 :(得分:2)
$file = "test.txt";
if (!unlink($file))
{
echo ("Error deleting $file");
}
else
{
echo ("Deleted $file");
}
答案 5 :(得分:0)
此代码也可以处理非空文件夹 - 只需在帮助程序中使用它。
if (!function_exists('deleteDirectory')) {
function deleteDirectory($dir) {
if (!file_exists($dir)) return true;
if (!is_dir($dir) || is_link($dir)) return unlink($dir);
foreach (scandir($dir) as $item) {
if ($item == '.' || $item == '..') continue;
if (!deleteDirectory($dir . "/" . $item)) {
chmod($dir . "/" . $item, 0777);
if (!deleteDirectory($dir . "/" . $item)) return false;
};
}
return rmdir($dir);
}
}
答案 6 :(得分:0)
2018年9月,该解决方案对我有用。
if(unlink(FCPATH . 'uploads/'.$filename)){
echo "Deleted";
}else{
echo "Found some error";
}
答案 7 :(得分:0)
使用FCPATH
取消链接。您可以尝试以下操作,这对我有用:
$file_name = $SBLN_ROLL_NO."_ssc";
$file_ext = pathinfo($_FILES['ASSIGNMENT_FILE']['name'],PATHINFO_EXTENSION);
//File upload configuration
$config['upload_path'] = $upload_path;
$config['allowed_types'] = 'jpg|jpeg|png|gif|pdf';
$config['file_name'] = $file_name.'.'.$file_ext;
//First save the previous path for unlink before update
$temp = $this->utilities->findByAttribute('SKILL_DEV_ELEMENT', array('APPLICANT_ID'=>$STUDENT_PERSONAL_INFO->APPLICANT_ID, 'SD_ID'=>$SD_ID));
//Now Unlink
if(file_exists($upload_path.'/'.$temp->ELEMENT_URL))
{
unlink(FCPATH . $upload_path.'/'.$temp->ELEMENT_URL);
}
//Then upload a new file
if($this->upload->do_upload('file'))
{
// Uploaded file data
$fileData = $this->upload->data();
$file_name = $fileData['file_name'];
}
答案 8 :(得分:0)
可以简单地使用:
$file = "uploads/my_test_file.txt";
if (is_readable($file) && unlink($file)) {
echo "The file has been deleted";
} else {
echo "The file was not found";
}