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 2623328 commit eaaebd3Copy full SHA for eaaebd3
libs/openFrameworks/utils/ofFilesystem.h
@@ -203,7 +203,10 @@ class path {
203
}
204
205
// MARK: other sub paths
206
+ path root_name() const { return path(path_.root_name()); }
207
+ path root_directory() const { return path(path_.root_directory()); }
208
path root_path() const { return path(path_.root_path()); }
209
+ path relative_path() const { return path(path_.relative_path()); }
210
path parent_path() const { return path(path_.parent_path()); }
211
path filename() const { return path(path_.filename()); }
212
path stem() const { return path(path_.stem()); }
0 commit comments