diff --git a/src/content/docs/plugin/file-system.mdx b/src/content/docs/plugin/file-system.mdx index d7c0250cb6..2e2acd7169 100644 --- a/src/content/docs/plugin/file-system.mdx +++ b/src/content/docs/plugin/file-system.mdx @@ -84,6 +84,14 @@ Install the fs plugin to get started. The fs plugin is available in both JavaScript and Rust. +:::note[Rust Exposure] + +The exposed API on the Rust side is mostly intended to manipulate the [Scope](#scopes) of the plugin. +It does expose some APIs to access the file system on mobile, but the recommendation is to use [`tokio::fs`](https://docs.rs/tokio/latest/tokio/fs/index.html) or the +[`std::fs`](https://doc.rust-lang.org/std/fs/index.html) for accessing the file system. + +::: +