(options)
| 347 | const makeTempFile = makeTempFileFactory("makeTempFile") |
| 348 | |
| 349 | const makeTempFileScoped: FileSystem.FileSystem["makeTempFileScoped"] = (options) => |
| 350 | Effect.acquireRelease( |
| 351 | makeTempFileFactory("makeTempFileScoped")(options), |
| 352 | (file) => Effect.orDie(removeFactory("makeTempFileScoped")(file, { force: true })) |
| 353 | ) |
| 354 | |
| 355 | const readDirectory: FileSystem.FileSystem["readDirectory"] = (path, options) => { |
| 356 | if (options?.recursive) { |
nothing calls this directly
no test coverage detected