mirror of
https://github.com/nextcloud/server.git
synced 2025-03-04 03:57:28 +00:00
30 lines
676 B
PHP
30 lines
676 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OC\Files\Storage;
|
|
|
|
/**
|
|
* local storage backend in temporary folder for testing purpose
|
|
*/
|
|
class Temporary extends Local {
|
|
public function __construct($arguments = null) {
|
|
parent::__construct(['datadir' => \OC::$server->getTempManager()->getTemporaryFolder()]);
|
|
}
|
|
|
|
public function cleanUp() {
|
|
\OC_Helper::rmdirr($this->datadir);
|
|
}
|
|
|
|
public function __destruct() {
|
|
parent::__destruct();
|
|
$this->cleanUp();
|
|
}
|
|
|
|
public function getDataDir() {
|
|
return $this->datadir;
|
|
}
|
|
}
|