Site icon Flutter Packages | Pub dev Packages – Flutter Mobile App World

FileManager is a wonderful widget

File Manager

FileManager is a wonderful widget that allows you to manage files and folders, pick files and folders, and do a lot more. Designed to feel like part of the Flutter framework.

Compatibility

   Android
   Linux
   Windows (in progress)
   Web
   MacOS (active issue: MacOS support)
   iOS (active issue: iOS support)

Usage

Make sure to check out examples for more details.

Installation

Dependencies Add the following line to pubspec.yaml:

dependencies:
  file_manager: ^1.0.0

Give storage permission to application

Android: Beside needing to add WRITE_EXTERNAL_STORAGE and READ_EXTERNAL_STORAGE to your android/app/src/main/AndroidManifest.xml.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xxx.yyy">
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
...
</manifest>

also add for Android 10

    <application
      android:requestLegacyExternalStorage="true"   
      ...

You also need Runtime Request Permission allow storage permission from app setting manually or you may use any package such as permission_handler.

Basic setup

The complete example is available here.

Required parameter for FileManager are controller and builder

final FileManagerController controller = FileManagerController();

Sample code

FileManager(
    controller: controller,
    builder: (context, snapshot) {
    final List<FileSystemEntity> entities = snapshot;
      return ListView.builder(
        itemCount: entities.length,
        itemBuilder: (context, index) {
          return Card(
            child: ListTile(
              leading: FileManager.isFile(entities[index])
                  ? Icon(Icons.feed_outlined)
                  : Icon(Icons.folder),
              title: Text(FileManager.basename(entities[index])),
              onTap: () {
                if (FileManager.isDirectory(entities[index])) {
                    controller.openDirectory(entities[index]);   // open directory
                  } else {
                      // Perform file-related tasks.
                  }
              },
            ),
          );
        },
      );
  },
),

FileManager

PropertiesDescription
loadingScreenFor the loading screen, create a custom widget. A simple Centered CircularProgressIndicator is provided by default.
emptyFolderFor an empty screen, create a custom widget.
controllerFor an empty screen, create a custom widget.
hideHiddenEntityHide the files and folders that are hidden.
builderThis function allows you to create custom widgets and retrieve a list of entities List<FileSystemEntity>.

FileManagerContoller

PropertiesDescription
getSortedByThe sorting type that is currently in use is returned.
setSortedByis used to set the sorting type. SortBy{ name, type, date, size }.
getCurrentDirectoryGet current Directory
getCurrentPathGet current path, similar to [getCurrentDirectory].
setCurrentPathSet current directory path by providing String of path, similar to [openDirectory]. List<FileSystemEntity>.
isRootDirectoryreturn true if current directory is the root. false, if the current directory not on root of the stogare.
goToParentDirectoryJumps to the parent directory of currently opened directory if the parent is accessible.
openDirectoryOpen directory by providing Directory.
titleNotifierValueNotifier of the current directory’s basename

Others

PropertiesDescription
isFilecheck weather FileSystemEntity is File.
isDirectorycheck weather FileSystemEntity is Directory.
basenameGet the basename of Directory or File. Provide FileDirectory or FileSystemEntity and returns the name as a String. If you want to hide the extension of a file, you may use optional parameter showFileExtension. ie controller.dirName(dir, true)
formatBytesConvert bytes to human readable size.[getCurrentDirectory].
setCurrentPathSet current directory path by providing String of path, similar to [openDirectory]. List<FileSystemEntity>.
getStorageListGet list of available storage in the device, returns an empty list if there is no storage List<Directory>
createFolderCreates the directory if it doesn’t exist. Requires currentPath and Name of the Directory.

Contributions

Contributions are welcomed!

If you feel that a hook is missing, feel free to open a pull-request.

For a custom-hook to be merged, you will need to do the following:

Download FileManager widget source code on GitHub

https://github.com/DevsOnFlutter/file_manager
Exit mobile version