Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有动态列表页面。从那我想delete使用joomla2.5从服务器归档。我尝试使用以下代码:
delete
jimport('joomla.filesystem.file'); $path = JPath::clean($path);
它不工作。
要删除文件夹:
JFolder::delete(JPATH_ROOT.DS.'modules'.DS.'mod_footer');
要删除文件:
JFile::delete(JPATH_ROOT.DS.'modules'.DS.'mod_footer'.DS.'mod_footer.php');