Interface of a class managing a directory. More...
#include <arcane/core/IDirectory.h>
Public Member Functions | |
| virtual | ~IDirectory ()=default |
| Frees the resources. | |
| virtual bool | createDirectory () const =0 |
| Creates the directory. | |
| virtual String | path () const =0 |
| Returns the path of the directory. | |
| virtual String | file (const String &file_name) const =0 |
| Returns the full path of the file file_name in the directory. | |
Interface of a class managing a directory.
Definition at line 31 of file IDirectory.h.
|
pure virtual |
Creates the directory.
| true | in case of failure, |
| false | in case of success or if the directory already exists. |
Implemented in Arcane::Directory.
Returns the full path of the file file_name in the directory.
Implemented in Arcane::Directory.
Referenced by Arcane::ArcaneVerifierModule::onExit().
|
pure virtual |
Returns the path of the directory.
Implemented in Arcane::Directory.