func DirFS(dir string) experimentalsys.FS
DirFS is like os.DirFS except it returns sys.FS, which has more features.
▹ Example
AdaptFS adapts the input to sys.FS. Use DirFS instead of adapting an os.DirFS as it handles interop issues such as windows support.
Note: This performs no flag verification on OpenFile. sys.FS cannot read flags as there is no parameter to pass them through with. Moreover, sys.FS documentation does not require the file to be present. In summary, we can't enforce flag behavior.
type AdaptFS = sysfs.AdaptFS
▹ Example
FSConfig extends wazero.FSConfig, allowing access to the experimental sys.FS until it is moved to the "sys" package.
type FSConfig interface { // WithSysFSMount assigns a sys.FS file system for any paths beginning at // `guestPath`. // // This is an alternative to WithFSMount, allowing more features. WithSysFSMount(fs experimentalsys.FS, guestPath string) wazero.FSConfig }
ReadFS is used to mask an existing sys.FS for reads. Notably, this allows the CLI to do read-only mounts of directories the host user can write, but doesn't want the guest wasm to. For example, Python libraries shouldn't be written to at runtime by the python wasm file.
Note: This implements read-only by returning sys.EROFS or sys.EBADF, depending on the operation that require write access.
type ReadFS = sysfs.ReadFS
▹ Example