Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-11 | COMMON: Implement FSNode::createDirectoryRecursive() | Cameron Cawley | |
2019-08-11 | COMMON: Implement createDirectory() method to Common::FSNode | lolbot-iichan | |
Added a simple wrapper for AbstractFSNode::create(true) since there was no way to create directories. | |||
2019-01-30 | COMMON: Include hidden files in directory listings by default | Bastien Bouclet | |
Hidden files are now only ignored in the GUI file browser when the user has not checked 'show hidden files'. Myst III has the hidden flag set for one of the directories containing datafiles on the CD-ROM. When users copy the files to their hard drives the hidden flag is kept. Detection worked previously because hidden files were explicitly requested in the AD code. The engine would fail to open the datafiles because SearchMan.addSubDirectoryMatching ignored hidden directories. | |||
2018-04-15 | JANITORIAL: Fix whitespace | Adrian Frühwirth | |
2016-01-07 | COMMON: Make FSNode(AbstractFSNode *) private again. | Johannes Schickel | |
This also fixes a memory leak in OSystem_iOS7::addSysArchivesToSearchSet. | |||
2016-01-06 | IOS: Adds a warning | Vincent Bénony | |
2016-01-06 | IOS: Formatting | Vincent Bénony | |
2016-01-06 | IOS: Added a chroot like filesystem | Vincent Bénony | |
This is needed because it is not possible to keep absolute paths to the iOS document directory, because a part of its name change between each installation / update. | |||
2014-02-18 | COMMON: Make GPL headers consistent in themselves. | Johannes Schickel | |
2011-12-13 | COMMON: Make more members of Archive constant. | Andrea Corna | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2010-02-13 | cleanup | Max Horn | |
svn-id: r48041 | |||
2009-06-01 | Add a 'flat' option to FSDirectory to allow searching recursively for files ↵ | Willem Jan Palenstijn | |
in subdirectories svn-id: r41090 | |||
2009-02-22 | Modified FSDirectory::lookupCache to return a FSNode *pointer*, so that we ↵ | Max Horn | |
can distinguish between lookup failures and invalid cache entries. Also changed SearchSet::createReadStreamForMember to not use hasFile anymore, based on the assumption that any Archive::createReadStreamForMember implementation has to verify whether the member name is valid anyway (clarified the doxygen docs accordingly) svn-id: r38787 | |||
2009-02-17 | typo | Willem Jan Palenstijn | |
svn-id: r38440 | |||
2009-01-23 | Renamed Archive::openFile to createReadStreamForMember | Max Horn | |
svn-id: r36021 | |||
2009-01-23 | Renamed ArchiveMember::open -> createReadStream, and made it a cv member ↵ | Max Horn | |
(const); same for Archive::openFile svn-id: r36020 | |||
2009-01-23 | Renamed FSNode::openForReading / openForWriting to createReadStream / ↵ | Max Horn | |
createWriteStream, again to make ownership of the returned stream clear svn-id: r36014 | |||
2009-01-20 | Whoops it seems the comment used "backslashes" instead of "slashes" in other ↵ | Johannes Schickel | |
places too. svn-id: r35949 | |||
2009-01-20 | Fixed typo in comment. | Johannes Schickel | |
svn-id: r35948 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 | |||
2008-12-27 | Turned FSNode into a ArchiveMember subclass; removed the now obsolete ↵ | Max Horn | |
FSDirectoryMember; moved FSDirectory from common/archive.h to common/fs.h svn-id: r35578 | |||
2008-11-21 | Removed FSNode::lookupFile | Max Horn | |
svn-id: r35142 | |||
2008-10-02 | Renamed FilesystemNode -> FSNode | Max Horn | |
svn-id: r34716 | |||
2008-09-11 | Remove obsolete note about fopen | Max Horn | |
svn-id: r34487 | |||
2008-09-07 | Allow invoking FilesystemNode::getChild on non-dir nodes, by returning an ↵ | Max Horn | |
invalid node in that case svn-id: r34429 | |||
2008-09-06 | Switched class File & DumpFile to use StdioStream internally | Max Horn | |
svn-id: r34391 | |||
2008-09-03 | Moved FilesystemNode / FSList to namespace Common; also got rid of some ↵ | Max Horn | |
'typedef Common::String String;' name aliases svn-id: r34302 | |||
2008-09-02 | Change FilesystemNode::getChild to new desired behavior: namely, that it ↵ | Max Horn | |
should return valid nodes even for names for which no child exists (yet?) -- mail to scummvm-devel pending svn-id: r34284 | |||
2008-08-03 | FilesystemNode code: some comment cleanup; added ↵ | Max Horn | |
FilesystemNode::openForReading() and openForWriting() methods (for now these are simple wrappers around Common::File) svn-id: r33590 | |||
2008-03-29 | Changed FilesystemNode to use a SharedPtr instead of implementing its own ↵ | Max Horn | |
ref counting svn-id: r31303 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2008-01-26 | Reworked FilesystemNode::lookupFile (fixing doxygen comment, making it ↵ | Max Horn | |
possible to restrict the search depth, fixed the 'exhaustive' mode and some other tweaks) svn-id: r30644 | |||
2008-01-03 | Don't allow implicit conversion from Common::String to Common::FilesystemNode. | Johannes Schickel | |
svn-id: r30199 | |||
2007-10-16 | Committing the set of patches #1814434, thanks to jvprat. They improve the ↵ | David Corrales | |
documentation and parameter naming of the lookFile methods inside Common::FS. svn-id: r29228 | |||
2007-09-18 | Patch #1768757: Merge fsnode-gsoc into trunk (MAJOR change, will break ↵ | Max Horn | |
compilation on some ports) svn-id: r28944 | |||
2007-08-18 | Merged some of the changes from the trunk patch back in to the GSoC fsnode ↵ | David Corrales | |
branch. svn-id: r28649 | |||
2007-06-20 | Initial implementation of the lookupFile() function. It's meant to search ↵ | David Corrales | |
recursively for given filename within a set of directories. svn-id: r27551 | |||
2007-06-17 | Added a new parameter to the getChildren function, which allows including ↵ | David Corrales | |
hidden files in the results. svn-id: r27514 | |||
2007-06-16 | Removed the isValid operation from the FilesystemNode class in favor of the ↵ | David Corrales | |
much richer combinations possible with the new operations (exists, isReadable and isWritable). The work on the Common::File class is far from complete. Only the necessary was updated. svn-id: r27473 | |||
2007-06-05 | Renamed methods in the FilesystemNode class to match the AbstractFSNode ↵ | David Corrales | |
implementations. Also exposed the new methods (exists, isReadable and isWritable) in FilesystemNode. svn-id: r27113 | |||
2007-06-04 | Expose new fs backend methods in the FilesystemNode class. | David Corrales | |
svn-id: r27089 | |||
2007-05-31 | Merged the fs branch with trunk. r26949:27031 | David Corrales | |
svn-id: r27032 | |||
2007-05-30 | Updated legal headers in source files, based on what Pidgin (the IM client ↵ | Max Horn | |
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 | |||
2007-05-03 | Use abstract factories to initialize FilesystemNode objects. | David Corrales | |
svn-id: r26739 | |||
2007-03-08 | Turning FilesystemNode comment into a doxygen comment | Max Horn | |
svn-id: r26015 | |||
2007-02-03 | Fixing various doxygen warnings | Max Horn | |
svn-id: r25362 | |||
2006-07-22 | Added isValid to FilesystemNode and AbstractFilesystemNode. See my mail to ↵ | Johannes Schickel | |
-devel for more information. svn-id: r23567 | |||
2006-07-22 | Added FilesystemNode::name method | Max Horn | |
svn-id: r23553 |