Cache: no longer using this file

This commit is contained in:
Robin Appelman 2013-01-16 21:36:04 +01:00
parent 29ec007979
commit f9c42a196f
1 changed files with 0 additions and 61 deletions

View File

@ -1,61 +0,0 @@
<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Files;
/**
* representation of the location a file or folder is stored
*/
class File{
/**
* @var Storage\Storage $storage
*/
private $storage;
/**
* @var string internalPath
*/
private $internalPath;
public function __construct(Storage\Storage $storage, $internalPath){
$this->storage = $storage;
$this->internalPath = $internalPath;
}
public static function resolve($fullPath){
$storage = null;
$internalPath = '';
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath);
return new File($storage, $internalPath);
}
/**
* get the internal path of the file inside the filestorage
* @return string
*/
public function getInternalPath(){
return $this->internalPath;
}
/**
* get the storage the file is stored in
* @return \OC\Files\Storage\Storage
*/
public function getStorage(){
return $this->storage;
}
/**
* get the id of the storage the file is stored in
* @return string
*/
public function getStorageId(){
return $this->storage->getId();
}
}