Make a path from the specified name
(filename string)
| 149 | |
| 150 | // Make a path from the specified name |
| 151 | func fsPath(filename string) string { |
| 152 | return fsRoot() + "/" + filename |
| 153 | } |
| 154 | |
| 155 | // Convert two storage objects to a file path |
| 156 | func fsObjectsToPath(iContainer string, iObject string) string { |
no test coverage detected