refactor(fs): reduce overhead of watch (#2613)

This commit is contained in:
Tony
2025-04-19 19:35:14 +08:00
committed by GitHub
parent 5e78988f72
commit dac4d53724
12 changed files with 102 additions and 162 deletions
+2 -2
View File
@@ -68,9 +68,9 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript
import { metadata } from '@tauri-apps/plugin-fs'
import { stat } from '@tauri-apps/plugin-fs'
await metadata('/path/to/file')
await stat('/path/to/file')
```
## Contributing