本文整理汇总了PHP中gpFiles::RmDir方法的典型用法代码示例。如果您正苦于以下问题:PHP gpFiles::RmDir方法的具体用法?PHP gpFiles::RmDir怎么用?PHP gpFiles::RmDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gpFiles
的用法示例。
在下文中一共展示了gpFiles::RmDir方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: RmAll
/**
* Remove a file or directory and it's contents
*
*/
public static function RmAll($path)
{
if (empty($path)) {
return false;
}
if (is_link($path)) {
return @unlink($path);
}
if (!is_dir($path)) {
return @unlink($path);
}
$success = true;
$subDirs = array();
//$files = scandir($path);
$files = gpFiles::ReadDir($path, false);
foreach ($files as $file) {
$full_path = $path . '/' . $file;
if (!is_link($full_path) && is_dir($full_path)) {
$subDirs[] = $full_path;
continue;
}
if (!@unlink($full_path)) {
$success = false;
}
}
foreach ($subDirs as $subDir) {
if (!gpFiles::RmAll($subDir)) {
$success = false;
}
}
if ($success) {
return gpFiles::RmDir($path);
}
return false;
}
示例2: RemoveCSS
/**
* Remove the custom css file for a layout
*
*/
function RemoveCSS($layout)
{
global $dataDir;
$dir = $dataDir . '/data/_layouts/' . $layout;
$path = $dir . '/custom.css';
if (file_exists($path)) {
unlink($path);
}
$path = $dir . '/index.html';
if (file_exists($path)) {
unlink($path);
}
if (file_exists($dir)) {
gpFiles::RmDir($dir);
}
}
示例3: EmptyDir
/**
* Remove all the contents of a directory
*
*/
function EmptyDir($dir)
{
if (!file_exists($dir)) {
return true;
}
if (is_link($dir)) {
return unlink($dir);
}
$dh = @opendir($dir);
if (!$dh) {
return false;
}
$dh = @opendir($dir);
if (!$dh) {
return false;
}
$success = true;
$subDirs = array();
while (($file = readdir($dh)) !== false) {
if ($file == '.' || $file == '..') {
continue;
}
$fullPath = $dir . '/' . $file;
if (is_link($fullPath)) {
if (!unlink($fullPath)) {
$success = false;
}
continue;
}
if (is_dir($fullPath)) {
$subDirs[] = $fullPath;
continue;
}
if (!unlink($fullPath)) {
$success = false;
}
}
closedir($dh);
foreach ($subDirs as $subDir) {
if (!$this->EmptyDir($subDir)) {
$success = false;
}
if (!gpFiles::RmDir($subDir)) {
$success = false;
}
}
return $success;
}