123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * Copyright (c) 2013 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\Node;
- use OCP\Files\NotFoundException;
- class NonExistingFolder extends Folder {
- /**
- * @param string $newPath
- * @throws \OCP\Files\NotFoundException
- */
- public function rename($newPath) {
- throw new NotFoundException();
- }
- public function delete() {
- throw new NotFoundException();
- }
- public function copy($newPath) {
- throw new NotFoundException();
- }
- public function touch($mtime = null) {
- throw new NotFoundException();
- }
- public function getId() {
- throw new NotFoundException();
- }
- public function stat() {
- throw new NotFoundException();
- }
- public function getMTime() {
- throw new NotFoundException();
- }
- public function getSize() {
- throw new NotFoundException();
- }
- public function getEtag() {
- throw new NotFoundException();
- }
- public function getPermissions() {
- throw new NotFoundException();
- }
- public function isReadable() {
- throw new NotFoundException();
- }
- public function isUpdateable() {
- throw new NotFoundException();
- }
- public function isDeletable() {
- throw new NotFoundException();
- }
- public function isShareable() {
- throw new NotFoundException();
- }
- public function get($path) {
- throw new NotFoundException();
- }
- public function getDirectoryListing() {
- throw new NotFoundException();
- }
- public function nodeExists($path) {
- return false;
- }
- public function newFolder($path) {
- throw new NotFoundException();
- }
- public function newFile($path) {
- throw new NotFoundException();
- }
- public function search($pattern) {
- throw new NotFoundException();
- }
- public function searchByMime($mime) {
- throw new NotFoundException();
- }
- public function getById($id) {
- throw new NotFoundException();
- }
- public function getFreeSpace() {
- throw new NotFoundException();
- }
- public function isCreatable() {
- throw new NotFoundException();
- }
- }
|