-------------------------------------------------------------------------
| 81 | |
| 82 | //------------------------------------------------------------------------- |
| 83 | std::filesystem::path HtmlFolderStructure::CreateCurrentRoot(const std::filesystem::path& outputFolder) |
| 84 | { |
| 85 | auto root{ fs::absolute(outputFolder) }; |
| 86 | optionalCurrentRoot_ = std::make_unique<Hierarchy>(root); |
| 87 | CopyRecursiveDirectoryContent( |
| 88 | templateFolder_ / HtmlFolderStructure::ThirdParty, |
| 89 | root / HtmlFolderStructure::ThirdParty); |
| 90 | |
| 91 | return root; |
| 92 | } |
| 93 | |
| 94 | //------------------------------------------------------------------------- |
| 95 | HtmlFile HtmlFolderStructure::CreateCurrentModule(const std::filesystem::path& modulePath) |