summaryrefslogtreecommitdiffstats
path: root/lib/private/files/storage/local.php
Commit message (Collapse)AuthorAgeFilesLines
* Move \OC\Files to PSR-4Roeland Jago Douma2016-04-241-404/+0
|
* Merge pull request #23860 from owncloud/followup-23304-opening-empty-fileThomas Müller2016-04-111-3/+9
|\ | | | | Correctly return an empty string for empty files
| * Correctly return an empty string for empty filesJoas Schilling2016-04-081-3/+9
| |
* | lib: Fix typos (found by codespell)Stefan Weil2016-04-071-1/+1
|/ | | | Signed-off-by: Stefan Weil <sw@weilnetz.de>
* Fix PHP memory leak in file_get_contents()Morris Jobke2016-04-041-1/+6
| | | | | | | | | * ref https://bugs.php.net/bug.php?id=61961 * ref https://github.com/owncloud/core/issues/20261#issuecomment-180000256 * code is based on the proposal of @chriseqipe * fixes #20261
* Fix call to disk_free_space when a file is providedVincent Petry2016-03-071-1/+9
| | | | | | | | | In the case of shared files, we have to call free_space() on the file name. This has the side-effect that when uploading to a local storage without quota set, it will call disk_free_space with the file name, which fails. This fix uses the parent folder in case the given path is a file.
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-4/+1
|
* Replaces if ($file === '.' || $file === '..') by ↵Martin2015-09-221-1/+1
| | | | if(\OC\Files\Filesystem::isIgnoredDir($file)). Eases to find where this operation is used.
* Use the new IteratorDirectory instead of the fakedir wrapperRobin Appelman2015-07-151-1/+0
|
* Remove OC_LogThomas Müller2015-07-031-3/+3
|
* Remove file mapper - was only use in Windows and never worked properlyThomas Müller2015-07-031-289/+282
|
* update license headers and authorsMorris Jobke2015-06-251-0/+1
|
* Fix PHPDocLukas Reschke2015-05-221-0/+2
| | | | Use correct parameters
* Make getSourcePath accessible for storage wrappersRobin Appelman2015-04-131-1/+1
|
* Improve cross storage copy between local storagesRobin Appelman2015-04-131-0/+36
|
* fix copying folder across devicesRobin Appelman2015-03-311-0/+13
|
* Update license headersJenkins for ownCloud2015-03-261-4/+31
|
* Revert "Updating license headers"Morris Jobke2015-02-261-31/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+31
|
* Clear statcache before getting the mtime from local storage backendsRobin Appelman2014-12-021-0/+1
|
* Introduce getSourcePath() in Storage\Local to reduce the difference to ↵Joas Schilling2014-11-271-31/+46
| | | | MappedLocal
* Generate stable etags for local filesRobin Appelman2014-10-241-0/+21
|
* Check if a folder is deletable before we try to recursively delete itRobin Appelman2014-09-171-0/+3
|
* move to public namespaceMorris Jobke2014-08-191-1/+1
|
* Fix STORAGE_* constants usage by moving those constants into ↵Stephan Peijnik2014-08-191-1/+1
| | | | | | | | | | \OC\Files\Filesystem. As constants not defined within a class cannot be automatically found by the autoloader moving those constants into a class makes them accessible to code which uses them. Signed-off-by: Stephan Peijnik <speijnik@anexia-it.com>
* Removing unnecessary switch statements in fopen methods.Clark Tomlinson2014-07-311-16/+1
|
* files: storage: rename should check parent directories of old and new filesTigran Mkrtchyan2014-07-101-2/+11
| | | | | | | as described by POSIX.1-2008 (see http://pubs.opengroup.org/onlinepubs/9699919799/functions/rename.html) Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
* Increase file size limit from 2 GiB to 4 GiB when workarounds are unavailable.Andreas Fischer2014-05-291-4/+1
|
* Only call $this->filesize() for files.Andreas Fischer2014-05-291-1/+1
|
* Refactor Large File handling code.Andreas Fischer2014-05-291-90/+8
|
* Cast to numeric instead of float, i.e. use an integer if possible.Andreas Fischer2014-05-291-6/+6
|
* Use CURL to get filesize on 32bit systems.Andreas Fischer2014-05-291-11/+64
|
* Fix LocalStorage->unlink to work on folder as expectedRobin Appelman2014-05-281-1/+8
|
* re-use rescursive copy from common storageRobin Appelman2014-05-281-16/+1
|
* use \OC\Files\Filesystem::isIgnoredDirRobin Appelman2014-05-281-1/+1
|
* add recursive copy to local storage backendRobin Appelman2014-05-281-6/+20
|
* fix recursive rename for local storage backendRobin Appelman2014-05-281-2/+4
|
* remove unneeded delTreeRobin Appelman2014-05-281-25/+1
|
* refs #8376; added comment and applied patch on other filesSjors van der Pluijm2014-04-281-0/+5
|
* rewind iterator before iteration startsSjors van der Pluijm2014-04-281-0/+1
|
* fixes #8376Sjors van der Pluijm2014-04-281-1/+4
|
* Prevent error from cache update on deleted filesRobin McCorkell2014-04-131-1/+5
|
* Merge pull request #7824 from owncloud/hash-parameter-orderThomas Müller2014-03-281-1/+1
|\ | | | | Fix parameter order for Storage\Local::hash
| * Fix parameter order for Storage\Local::hashRobin Appelman2014-03-201-1/+1
| |
* | Also make "regular" local storage's mkdir recursiveRobin Appelman2014-02-201-1/+1
|/
* Merge branch 'master' into scrutinizer_documentation_patchesThomas Müller2014-02-141-0/+7
|\ | | | | | | | | Conflicts: lib/private/appconfig.php
| * Added isLocal() method to storage, used for xsendfileVincent Petry2014-02-061-0/+7
| | | | | | | | | | | | | | Added isLocal() method to Storage to find out whether the storage is local or not. This method is used for the x-sendfile logic to find out whether to add the headers.
* | polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-0/+9
|/
* Return SPACE_UNKNOWN if disk_free_space is disabled when getting the free ↵Robin Appelman2014-01-021-1/+1
| | | | space on a local storage