Function: tmpFS()
tmpFS(
relativeRoot?,options?):LocalFileSystem
LocalFileSystem rooted under resolveLocalTemp, with
relativeRoot joined as a relative path (leading / / ~ stripped
so the result stays under temp).
Parameters
Section titled “Parameters”relativeRoot?
Section titled “relativeRoot?”string = "."
options?
Section titled “options?”OsFileSystemOptions = {}
Returns
Section titled “Returns”Example
Section titled “Example”const scratch = tmpFS("job-42");await scratch.writeFile("out.bin", bytes);