Effect FileSystempub
Source:effect(pub) FileSystem
.read-file ( Str → (Result Str Str) )
.write-file ( Str Str → (Result Unit Str) )
.delete-file ( Str → (Result Unit Str) )
.file-exists ( Str → (Result Bool Str) )
Description
Filesystem effect for reading, writing, deleting, and probing files by path.