在我的自定义模块中,调用卸载功能时,我无法正确删除文件夹$upload_path = $this->local_path.'img/tmp/';
中包含的所有文件。
这是我的实际代码:
public function uninstall()
{
$upload_path = $this->local_path.'img/tmp/';
return parent::uninstall()
&& Configuration::deleteByName('N1_VERTICALSIDEMENU_ICONFILE');
$files = glob($upload_path.'*'); // get all file names
foreach($files as $file){ // iterate files
if(is_file($file))
unlink($file); // delete file
}
}
我在官方论坛中搜索了一个解决方案,但没有成功
有任何线索吗?