Sleeping Wombat Common Library  0.50.0
swCommonLibrary
Dir.h
Go to the documentation of this file.
1 #pragma once
2 
8 #include "Path.h"
9 
10 
11 
12 namespace filesystem
13 {
14 
15 
17 class Dir
18 {
19 private:
20 protected:
21 public:
22  explicit Dir() = default;
23  ~Dir() = default;
24 
25 
26  static bool CreateDirectory ( const filesystem::Path& path );
27 };
28 
29 
30 }
Directory manipulation.
Definition: Dir.h:17
Definition: Path.h:26
Definition: Dir.cpp:12