WorkingDirPath constructs and returns the full path to the working directory inside the system's temporary directory.
()
| 62 | // WorkingDirPath constructs and returns the full path to the working directory |
| 63 | // inside the system's temporary directory. |
| 64 | func (fs *FileSystem) WorkingDirPath() string { |
| 65 | return fmt.Sprintf("%s/%s", os.TempDir(), fs.workingDir) |
| 66 | } |
| 67 | |
| 68 | // NewDirPath generates a new unique path for a directory inside the working |
| 69 | // directory. |