mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
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:
parent
d8dc31a673
commit
f1250dbfcb
@ -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) {
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user