|
libzypp 17.38.1
|
Automatically deletes files or directories when no longer needed. More...
#include <zypp-core/fs/TmpPath.h>

Classes | |
| class | Impl |
| Clean or delete a directory on destruction. More... | |
Public Member Functions | |
| TmpPath () | |
| Default Ctor. | |
| TmpPath (Pathname tmpPath_r) | |
| Ctor. | |
| virtual | ~TmpPath () |
| Dtor. | |
| operator bool () const | |
| Test whether the Pathname is valid (i.e. | |
| Pathname | path () const |
| operator Pathname () const | |
| Type conversion to Pathname. | |
| bool | autoCleanup () const |
| Whether path is valid and deleted when the last reference drops. | |
| void | autoCleanup (bool yesno_r) |
| Turn autoCleanup on/off if path is valid. | |
Static Public Member Functions | |
| static const Pathname & | defaultLocation () |
Protected Attributes | |
| RW_pointer< Impl > | _impl |
Related Symbols | |
(Note that these are not member symbols.) | |
| std::ostream & | operator<< (std::ostream &str, const TmpPath &obj) |
| Stream output as pathname. | |
Automatically deletes files or directories when no longer needed.
TmpPath is constructed from a Pathname. Multiple TmpPath instances created by copy and assign, share the same reference counted internal representation.
When the last reference drops any file or directory located at the path passed to the ctor is deleted (recursively in case of directories). This behavior can be changed by calling autoCleanup.
Principally serves as base class, but standalone usable.
| zypp::filesystem::TmpPath::TmpPath | ( | ) |
|
explicit |
|
virtual |
Dtor.
Definition at line 114 of file TmpPath.cc.
|
explicit |
Test whether the Pathname is valid (i.e.
not empty. NOT whether it really denotes an existing file or directory).
Definition at line 119 of file TmpPath.cc.
| Pathname zypp::filesystem::TmpPath::path | ( | ) | const |
Definition at line 124 of file TmpPath.cc.
|
inline |
| bool zypp::filesystem::TmpPath::autoCleanup | ( | ) | const |
Whether path is valid and deleted when the last reference drops.
Definition at line 142 of file TmpPath.cc.
| void zypp::filesystem::TmpPath::autoCleanup | ( | bool | yesno_r | ) |
Turn autoCleanup on/off if path is valid.
Definition at line 145 of file TmpPath.cc.
|
static |
Definition at line 129 of file TmpPath.cc.
|
|
protected |