Manage & Fetch FileSystem's Files/Directories
Manage & Fetch FileSystem's Files/Directories
Use this component to pick files from the filesystem.
To get started using it, you must use KmpFileSystem. All functions are thread safe and main thread safe.
Below are the functions available:
_5KmpFileSystem.getAppDirectory(): String_5KmpFileSystem.getTempCacheDirectory(): String_5KmpFileSystem.getExternalStorageDirectory(): String_5KmpFileSystem.deleteFileAt(path: String)_5KmpFileSystem.createFileAt(path: String)
Any Setup Required?
For android please add this into your manifest:
_1<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />