COMMON: Implement createDirectory() method to Common::FSNode

Added a simple wrapper for AbstractFSNode::create(true) since there was
no way to create directories.
This commit is contained in:
lolbot-iichan 2019-06-29 18:56:57 +03:00 committed by Filippos Karapetis
parent d8dc31a673
commit f1250dbfcb
2 changed files with 20 additions and 0 deletions

View File

@ -152,6 +152,17 @@ WriteStream *FSNode::createWriteStream() const {
return _realNode->createWriteStream();
}
bool FSNode::createDirectory() const {
if (_realNode == nullptr)
return false;
if (_realNode->exists()) {
return false;
}
return _realNode->createDirectory();
}
FSDirectory::FSDirectory(const FSNode &node, int depth, bool flat)
: _node(node), _cached(false), _depth(depth), _flat(flat) {
}

View File

@ -230,6 +230,15 @@ public:
* @return pointer to the stream object, 0 in case of a failure
*/
WriteStream *createWriteStream() const;
/**
* Creates a directory referred by this node. This assumes that this
* node refers to non-existing directory. If this is not the case,
* false is returned.
*
* @return true if the directory was created, false otherwise.
*/
bool createDirectory() const;
};
/**