| 140 | } |
| 141 | |
| 142 | String File::temporaryDirectory() { |
| 143 | String dirname = relativeTo(P_tmpdir, strf("starbound.tmpdir.{}", hexEncode(Random::randBytes(16)))); |
| 144 | makeDirectory(dirname); |
| 145 | return dirname; |
| 146 | } |
| 147 | |
| 148 | bool File::exists(String const& path) { |
| 149 | struct stat st_buf; |