| 67 | |
| 68 | |
| 69 | string getContainerPath( |
| 70 | const string& rootDir, |
| 71 | const string& type, |
| 72 | const string& name, |
| 73 | const ContainerID& containerId) |
| 74 | { |
| 75 | return path::join( |
| 76 | rootDir, |
| 77 | type, |
| 78 | name, |
| 79 | CONTAINERS_DIR, |
| 80 | stringify(containerId)); |
| 81 | } |
| 82 | |
| 83 | |
| 84 | Try<ContainerPath> parseContainerPath(const string& rootDir, const string& dir) |
no test coverage detected