本文整理汇总了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);
}
}
示例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);
}
}