aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/FileSystem.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* copyright year 2014Max Kellermann2014-01-131-1/+1
|
* fs/Path: rename to AllocatedPathMax Kellermann2013-10-171-5/+7
| | | | | | | The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.
* fs/Limits: convert macro to "constexpr"Max Kellermann2013-10-171-1/+1
|
* fs/Path: move MPD_PATH_MAX to Limits.hxxMax Kellermann2013-10-171-0/+1
|
* FileSystem: extract DirectoryReader, improve the restDenis Krjuchkov2013-01-221-0/+43
- DirectoryReader is extracted to separate header - FileSystem.cxx/FileSystem.hxx/DirectoryReader.hxx moved to fs/ subdir - Functions return true on success, instead of 0 (where applicable) - ReadLink return result instead of out parameter - UnlinkFile is renamed to RemoveFile - CheckExists/CheckIsRegular/CheckIsDirectory are renamed to PathExists/FileExists/DirectoryExists