当前位置: 首页>>代码示例>>PHP>>正文


PHP gpFiles::RmDir方法代码示例

本文整理汇总了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;
 }
开发者ID:VTAMAGNO,项目名称:gpEasy-CMS,代码行数:39,代码来源:Files.php

示例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);
     }
 }
开发者ID:VTAMAGNO,项目名称:gpEasy-CMS,代码行数:20,代码来源:admin_theme_content.php

示例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;
 }
开发者ID:rizub4u,项目名称:gpEasy-CMS,代码行数:52,代码来源:SetupSite.php


注:本文中的gpFiles::RmDir方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。