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


PHP OC_Filesystem::rename方法代码示例

本文整理汇总了PHP中OC_Filesystem::rename方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_Filesystem::rename方法的具体用法?PHP OC_Filesystem::rename怎么用?PHP OC_Filesystem::rename使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OC_Filesystem的用法示例。


在下文中一共展示了OC_Filesystem::rename方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setName

 /**
  * Renames the node
  *
  * @param string $name The new name
  * @return void
  */
 public function setName($name)
 {
     list($parentPath, ) = Sabre_DAV_URLUtil::splitPath($this->path);
     list(, $newName) = Sabre_DAV_URLUtil::splitPath($name);
     $newPath = $parentPath . '/' . $newName;
     $oldPath = $this->path;
     OC_Filesystem::rename($this->path, $newPath);
     $this->path = $newPath;
     $query = OC_DB::prepare('UPDATE *PREFIX*properties SET propertypath = ? WHERE userid = ? AND propertypath = ?');
     $query->execute(array($newPath, OC_User::getUser(), $oldPath));
 }
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-owncloud_.htaccess-,代码行数:17,代码来源:owncloud_lib_connector_sabre_node.php

示例2: move

 /**
  * move a file or folder
  *
  * @param dir  $sourceDir
  * @param file $source
  * @param dir  $targetDir
  * @param file $target
  */
 public static function move($sourceDir, $source, $targetDir, $target)
 {
     if (OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared')) {
         $targetFile = self::normalizePath($targetDir . '/' . $target);
         $sourceFile = self::normalizePath($sourceDir . '/' . $source);
         return OC_Filesystem::rename($sourceFile, $targetFile);
     }
 }
开发者ID:jaeindia,项目名称:ownCloud-Enhancements,代码行数:16,代码来源:files.php

示例3: move

 /**
  * move a file or folder
  *
  * @param dir  $sourceDir
  * @param file $source
  * @param dir  $targetDir
  * @param file $target
  */
 public static function move($sourceDir, $source, $targetDir, $target)
 {
     if (OC_User::isLoggedIn()) {
         $targetFile = $targetDir . '/' . $target;
         $sourceFile = $sourceDir . '/' . $source;
         return OC_Filesystem::rename($sourceFile, $targetFile);
     }
 }
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-owncloud_.htaccess-,代码行数:16,代码来源:owncloud_lib_files.php


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