2012-05-02 10:54:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-11-03 12:51:39 +00:00
|
|
|
*/
|
2012-08-29 06:38:33 +00:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2024-05-23 07:26:56 +00:00
|
|
|
// This means that they should be used by apps instead of the internal Nextcloud classes
|
2019-11-22 19:52:10 +00:00
|
|
|
|
2012-05-02 10:54:31 +00:00
|
|
|
namespace OCP;
|
|
|
|
|
2012-05-19 08:36:57 +00:00
|
|
|
/**
|
2013-02-11 16:44:02 +00:00
|
|
|
* This class provides access to the internal filesystem abstraction layer. Use
|
2023-05-10 09:56:34 +00:00
|
|
|
* this class exclusively if you want to access files
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0
|
2012-05-19 08:36:57 +00:00
|
|
|
*/
|
2012-05-02 10:54:31 +00:00
|
|
|
class Files {
|
|
|
|
/**
|
2023-05-10 09:56:34 +00:00
|
|
|
* Recursive deletion of folders
|
2013-01-06 22:54:18 +00:00
|
|
|
* @return bool
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 10:54:31 +00:00
|
|
|
*/
|
2020-04-10 14:51:06 +00:00
|
|
|
public static function rmdirr($dir) {
|
2020-04-09 14:07:47 +00:00
|
|
|
return \OC_Helper::rmdirr($dir);
|
2012-05-02 10:54:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Get the mimetype form a local file
|
2014-02-08 10:47:55 +00:00
|
|
|
* @param string $path
|
2012-05-02 10:54:31 +00:00
|
|
|
* @return string
|
|
|
|
* does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 10:54:31 +00:00
|
|
|
*/
|
2020-04-10 14:51:06 +00:00
|
|
|
public static function getMimeType($path) {
|
2015-11-26 09:18:32 +00:00
|
|
|
return \OC::$server->getMimeTypeDetector()->detect($path);
|
2012-05-02 10:54:31 +00:00
|
|
|
}
|
|
|
|
|
2013-03-19 13:27:02 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Search for files by mimetype
|
2014-02-08 10:47:55 +00:00
|
|
|
* @param string $mimetype
|
2013-03-19 13:27:02 +00:00
|
|
|
* @return array
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0
|
2013-03-19 13:27:02 +00:00
|
|
|
*/
|
2020-04-10 14:51:06 +00:00
|
|
|
public static function searchByMime($mimetype) {
|
2017-07-22 19:10:16 +00:00
|
|
|
return \OC\Files\Filesystem::searchByMime($mimetype);
|
2013-03-19 13:27:02 +00:00
|
|
|
}
|
|
|
|
|
2012-05-02 10:54:31 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Copy the contents of one stream to another
|
2014-02-08 10:47:55 +00:00
|
|
|
* @param resource $source
|
|
|
|
* @param resource $target
|
2012-05-02 10:54:31 +00:00
|
|
|
* @return int the number of bytes copied
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0
|
2012-05-02 10:54:31 +00:00
|
|
|
*/
|
2020-04-09 11:53:40 +00:00
|
|
|
public static function streamCopy($source, $target) {
|
2021-01-12 09:15:48 +00:00
|
|
|
[$count, ] = \OC_Helper::streamCopy($source, $target);
|
2013-02-22 15:43:11 +00:00
|
|
|
return $count;
|
2012-05-02 10:54:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a suffix to the name in case the file exists
|
2014-02-08 10:47:55 +00:00
|
|
|
* @param string $path
|
|
|
|
* @param string $filename
|
2012-05-02 10:54:31 +00:00
|
|
|
* @return string
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0 use getNonExistingName of the OCP\Files\Folder object
|
2012-05-02 10:54:31 +00:00
|
|
|
*/
|
2017-07-22 19:10:16 +00:00
|
|
|
public static function buildNotExistingFileName($path, $filename) {
|
|
|
|
return \OC_Helper::buildNotExistingFileName($path, $filename);
|
2012-05-02 10:54:31 +00:00
|
|
|
}
|
|
|
|
|
2012-09-08 14:02:11 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Gets the Storage for an app - creates the needed folder if they are not
|
2016-04-07 17:51:27 +00:00
|
|
|
* existent
|
2014-02-06 15:30:58 +00:00
|
|
|
* @param string $app
|
2012-10-10 11:18:36 +00:00
|
|
|
* @return \OC\Files\View
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 5.0.0
|
2018-03-21 13:24:22 +00:00
|
|
|
* @deprecated 14.0.0 use IAppData instead
|
2012-09-08 14:02:11 +00:00
|
|
|
*/
|
2017-07-22 19:10:16 +00:00
|
|
|
public static function getStorage($app) {
|
2020-04-09 14:07:47 +00:00
|
|
|
return \OC_App::getStorage($app);
|
2012-05-19 08:44:08 +00:00
|
|
|
}
|
2012-05-02 10:54:31 +00:00
|
|
|
}
|