We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ade3b4 commit 2623328Copy full SHA for 2623328
libs/openFrameworks/utils/ofFilesystem.h
@@ -212,6 +212,11 @@ class path {
212
auto extension() const { return path(path_.extension()); }
213
bool has_extension() const { return path_.has_extension(); }
214
bool has_filename() const { return path_.has_filename(); }
215
+ bool has_root_path() const { return path_.has_root_path(); }
216
+ bool has_root_name() const { return path_.has_root_name(); }
217
+ bool has_root_directory() const { return path_.has_root_directory(); }
218
+ bool has_relative_path() const { return path_.has_relative_path(); }
219
+ bool has_stem() const { return path_.has_stem(); }
220
221
friend std::ostream& operator<<(std::ostream& os, const path& p) {
222
return os << p.string();
0 commit comments