itempmanager.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @author Morris Jobke <hey@morrisjobke.de>
  4. * @author Robin Appelman <icewind@owncloud.com>
  5. *
  6. * @copyright Copyright (c) 2015, ownCloud, Inc.
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OCP;
  23. interface ITempManager {
  24. /**
  25. * Create a temporary file and return the path
  26. *
  27. * @param string $postFix
  28. * @return string
  29. */
  30. public function getTemporaryFile($postFix = '');
  31. /**
  32. * Create a temporary folder and return the path
  33. *
  34. * @param string $postFix
  35. * @return string
  36. */
  37. public function getTemporaryFolder($postFix = '');
  38. /**
  39. * Remove the temporary files and folders generated during this request
  40. */
  41. public function clean();
  42. /**
  43. * Remove old temporary files and folders that were failed to be cleaned
  44. */
  45. public function cleanOld();
  46. }