nextcloud/lib/private/files/storage/temporary.php

32 lines
656 B
PHP
Raw Normal View History

2012-09-07 20:30:48 +04:00
<?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\Storage;
/**
2013-02-05 19:24:40 +04:00
* local storage backend in temporary folder for testing purpose
2012-09-07 20:30:48 +04:00
*/
class Temporary extends Local{
2012-09-07 20:30:48 +04:00
public function __construct($arguments) {
parent::__construct(array('datadir' => \OC_Helper::tmpFolder()));
2012-09-07 20:30:48 +04:00
}
public function cleanUp() {
\OC_Helper::rmdirr($this->datadir);
}
public function __destruct() {
parent::__destruct();
2012-09-07 20:30:48 +04:00
$this->cleanUp();
}
public function getDataDir() {
return $this->datadir;
}
2012-09-07 20:30:48 +04:00
}