Flutter Gems is a curated list of 7250+ useful Dart & Flutter packages that are categorized based on functionality.

Discord Medium LinkedIn X

Top Flutter File, Folder and Path Utilities packages

Last updated: May 18, 2026

File and Path utilities abstract the massive differences between iOS, Android, and Windows file systems, providing safe directories to store temporary caches, user documents, and downloaded assets.

Best Practices for Path Utilities

  • Application Documents vs. Cache: Store user-generated data in the ApplicationDocumentsDirectory (which is backed up to iCloud/Google Drive). Store easily re-downloadable data in the TemporaryDirectory (which the OS will delete when storage runs low).
  • Path Joining: Never concatenate file paths manually using strings (e.g., dir + '/' + filename). Use the path package's join() method. Windows uses backslashes (\), while Unix uses forward slashes (/), and manual concatenation will cause crashes.
  • File Locks: When multiple parts of your app might read/write the same local file simultaneously, implement proper locking mechanisms or synchronous queues to prevent file corruption.

The complete list of Path Providers, File System Helpers, and Directory utilities for Flutter is provided below.


path_provider
👍 5.53K   ⬇️ 4.8M
Dart 3 compatible
Maintenance Status: Average

Flutter plugin for getting commonly used locations on host platform file systems, such as the temp and app data directories.

watcher
👍 245   ⬇️ 9.5M
Dart 3 compatible
Maintenance Status: Good

A file system watcher. It monitors changes to contents of directories and sends notifications when files have been added, removed, or modified.

path
👍 1.73K   ⬇️ 6.1M
Dart 3 compatible
Maintenance Status: Average

A string-based path manipulation library. All of the path operations you know and love, with solid support for Windows, POSIX (Linux and Mac OS X), and the web.

file
👍 295   ⬇️ 6.5M
Dart 3 compatible
Maintenance Status: Average

A pluggable, mockable file system abstraction for Dart. Supports local file system access, as well as in-memory file systems, record-replay file systems, and chroot file systems.

glob
👍 102   ⬇️ 6.2M
Dart 3 compatible
Maintenance Status: Average

A library to perform Bash-style file and directory globbing.

path_provider_foundation
👍 8   ⬇️ 5.4M
Dart 3 compatible
Maintenance Status: Good

iOS and macOS implementation of the path_provider plugin

flutter_downloader
👍 1.64K   ⬇️ 114.5K
Dart 3 compatible
Maintenance Status: Average

Powerful plugin making it easy to download files.

open_file
👍 1.08K   ⬇️ 304K
Dart 3 compatible
Maintenance Status: Good

A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

open_filex
👍 428   ⬇️ 400.5K
Dart 3 compatible
Maintenance Status: Average

A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

file_saver
👍 495   ⬇️ 193.9K
Dart 3 compatible
Maintenance Status: Good

Save files from bytes, paths, streams, and URLs across Android, iOS, Web, Windows, macOS, and Linux.

background_downloader
👍 484   ⬇️ 93.2K
Dart 3 compatible
Maintenance Status: Good

A multi-platform background file downloader and uploader. Define the task, enqueue and monitor progress

cross_file
👍 308   ⬇️ 220.3K
Dart 3 compatible
Maintenance Status: Good

An abstraction to allow working with files across multiple platforms.

external_path
👍 146   ⬇️ 242.7K
Dart 3 compatible
Maintenance Status: Average

A flutter plugin to get internal, external storage and external public directory path.

image_downloader
👍 266   ⬇️ 692
Dart 3 compatible
Maintenance Status: Poor

Flutter plugin that downloads images on the Internet and saves them on device.

flutter_file_downloader
👍 201   ⬇️ 12.9K
Dart 3 compatible
Maintenance Status: Good

A simple flutter plugin that downloads any file type to downloads directory

internet_file
👍 127   ⬇️ 68K
Dart 3 compatible
Maintenance Status: Good

A internet file getter (also optional downloader) that works in all platforms

file_manager
👍 149   ⬇️ 635
Dart 3 compatible
Maintenance Status: Poor

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.

thumbnailer
👍 105   ⬇️ 4.4K
Dart 3 compatible
Maintenance Status: Good

Plugin that is able to generate thumbnails from files with various mime types. If thumbnail generation is not support for specific mime type, then a fallback icon is returned

al_downloader
👍 104   ⬇️ 408
Dart 3 compatible
Maintenance Status: Poor

A URL-based flutter downloader that supports to download any type of file and automatically manages a lot of things.

media_store_plus
👍 87   ⬇️ 18.2K
Dart 3 compatible
Maintenance Status: Average

To use Android MediaStore API in Flutter, It supports both read & write operation in every android version through flutter.

open_file_plus
👍 96   ⬇️ 535
Dart 3 compatible
Maintenance Status: Poor

A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

download
👍 82   ⬇️ 17.2K
Dart 3 compatible
Maintenance Status: Average

Cross-Platform file downloader for Dart and Flutter projects.

flutter_filereader
👍 88   ⬇️ 73
Dart 3 compatible
Maintenance Status: Poor

A local file view widget,Support a variety of file types, such as Doc Eexcl PPT TXT and so on,Android is implemented by Tencent X5,iOS is implemented by WKWebView

flutter_download_manager
👍 74   ⬇️ 2.1K
Dart 3 compatible
Maintenance Status: Poor

Flutter Download Manager is a Cross-Platform file downloader with resumeable, parallel and batch Download support. Also be notified of download status and progress updates

downloadsfolder
👍 49   ⬇️ 14.5K
Dart 3 compatible
Maintenance Status: Average

A Flutter plugin for retrieving the path to the downloads folder and performing operations related to file downloads on different platforms.

document_file_save_plus
👍 55   ⬇️ 4.1K
Dart 3 compatible
Maintenance Status: Poor

Save bytes data into Download folder (Android), or show save dialog (iOS).

open_file_safe
👍 56   ⬇️ 193
Dart 3 compatible
Maintenance Status: Poor

A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

brotli
👍 21   ⬇️ 40.3K
Dart 3 compatible
Maintenance Status: Poor

Pure Dart Brotli decoder.

android_path_provider
👍 48   ⬇️ 5.7K
Dart 3 compatible
Maintenance Status: Good

Flutter plugin for getting Android directories. (Downloads, Movies, Pictures...)

flutter_media_downloader Card Image
flutter_media_downloader
👍 52   ⬇️ 316
Dart 3 compatible
Maintenance Status: Average

This plugin helps user to download medias for example pdf files, image files etc.

downloads_path_provider_28
👍 49   ⬇️ 1.7K
Dart 3 compatible
Maintenance Status: Poor

Flutter plugin to get the download directory for Android modified for sdk version 28+. Forked from Daniel MF.

open_document
👍 50   ⬇️ 150
Dart 3 compatible
Maintenance Status: Poor

OpenDocument generate a local folder, for file and document storage, also can open pdf, xlsx, docs, ppt and zip files. You can also locate your files by implementing MyFilesScreen you can change folder styles and colors using StyleMyFile

open_file_manager
👍 38   ⬇️ 13.5K
Dart 3 compatible
Maintenance Status: Average

A flutter plugin to open default file manager app. on an Android, it opens Download/Recent folder on file manager app. on iOS, it opens app's document folder in Files app.

uri_to_file
👍 44   ⬇️ 4.7K
Dart 3 compatible
Maintenance Status: Poor

A Flutter plugin for converting supported uri to file. Supports Android & iOS.

better_open_file
👍 42   ⬇️ 3.5K
Dart 3 compatible
Maintenance Status: Poor

This is a fork from a plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)

universal_file_viewer
👍 41   ⬇️ 396
Dart 3 compatible
Maintenance Status: Good

A Flutter package to preview local and remote files with inline viewers and external fallback.

native_file_preview
👍 30   ⬇️ 8.8K
Dart 3 compatible
Maintenance Status: Good

A Flutter plugin that provides native file preview functionality for iOS and Android platforms.

file_magic_number
👍 28   ⬇️ 9.5K
Dart 3 compatible
Maintenance Status: Good

A Flutter package to detect file types based on their magic number instead of MIME types. Supports Flutter on mobile, desktop, and web without native code.

file_preview
👍 35   ⬇️ 633
Dart 3 compatible
Maintenance Status: Poor

A plug-in that supports flutter preview files

open_app_file
👍 29   ⬇️ 7.4K
Dart 3 compatible
Maintenance Status: Average

A plugin to open files the app has permission to access with default system-provided applications.

file_support
👍 34   ⬇️ 352
Dart 3 compatible
Maintenance Status: Poor

File Support is plugin very helpful for different kind of file handling operations.Its used create, update, get information about file.

disk_space_plus
👍 14   ⬇️ 25K
Dart 3 compatible
Maintenance Status: Good

A tiny Flutter Plugin to show free and total disk space.

cr_file_saver
👍 34   ⬇️ 22
Dart 3 compatible
Maintenance Status: Poor

Allows to save files on Android and IOS devices and request permission if needed.

animated_folder
👍 32   ⬇️ 54
Dart 3 compatible
Maintenance Status: Poor

AnimatedFolder widget provides an interactive way to display content in a folder with animated sheets, enhancing user experience.

flutter_file_saver
👍 29   ⬇️ 3.7K
Dart 3 compatible
Maintenance Status: Average

Interface to provide a way to save files on the device in Flutter.

tbib_downloader Card Image
tbib_downloader
👍 30   ⬇️ 67
Dart 3 compatible
Maintenance Status: Good

This package for download file and open it you can display notifications and progress notification and can receive download bytes and total bytes.

lecle_downloads_path_provider
👍 29   ⬇️ 18
Dart 3 compatible
Maintenance Status: Poor

A Flutter project to get the downloads folder absolute path from Android and iOS device.

file_system_access_api
👍 26   ⬇️ 3.4K
Dart 3 compatible
Maintenance Status: Poor

A Dart library to expose the File System Access Api from web platform.

open_dir
👍 28   ⬇️ 23
Dart 3 compatible
Maintenance Status: Average

Plugin for opening native directory on desktop platforms by given path.

file_sizes
👍 27   ⬇️ 1.1K
Dart 3 compatible
Maintenance Status: Poor

Get the Human readable size of the file. It is purely written in dart and support both number and string as parameters.

power_file_view
👍 25   ⬇️ 26
Dart 3 compatible
Maintenance Status: Poor

A powerful file view widget, support a variety of file types, such as Doc Eexcl PPT TXT PDF and so on, Android is implemented by Tencent X5, iOS is implemented by WKWebView.

folder_file_saver
👍 23   ⬇️ 151
Dart 3 compatible
Maintenance Status: Average

Flutter plugin for save file to Folder extenison of your_app. resize image downloaded. create folder by extension. require permission and open setting device.

dtorrent_task
👍 22   ⬇️ 106
Dart 3 compatible
Maintenance Status: Good

BitTorrent download client package written by pure Dart language.

import_path_converter
👍 18   ⬇️ 2.4K
Dart 3 compatible
Maintenance Status: Poor

Automatically organize your dart imports

file_saver_ffi
👍 13   ⬇️ 743
Dart 3 compatible
Maintenance Status: Good

A high-performance file saver for Flutter using FFI and JNI. Effortlessly save to gallery (images/videos) or device storage with original quality and custom album support.

en_file_uploader
👍 12   ⬇️ 215
Dart 3 compatible
Maintenance Status: Good

This Dart package provides a file upload functionality that is implementation-agnostic. Provides the capability to upload a file in chunks with built-in retry handling.

flutter_file_info Card Image
flutter_file_info
👍 10   ⬇️ 171
Dart 3 compatible
Maintenance Status: Average

A Flutter plugin for retrieving detailed file metadata, including native icons assigned by file type.

flutter_file_uploader Card Image
flutter_file_uploader
👍 9   ⬇️ 115
Dart 3 compatible
Maintenance Status: Average

Flutter widgets that simplify the creation and use of the en_file_uploader library. They include both the UI and business logic for file management.

http_file_uploader
👍 8   ⬇️ 76
Dart 3 compatible
Maintenance Status: Good

A en_file_uploader plugin to handle the file upload using http package. Provides the capability to upload a file in chunks with built-in retry handling.

jsaver
👍 6   ⬇️ 58
Dart 3 compatible
Maintenance Status: Poor

Just An Amazing File Saver Plugin That Save Files To User Choice Directory On Android , Web , Linux & Windows.

dio_file_uploader
👍 5   ⬇️ 62
Dart 3 compatible
Maintenance Status: Average

A en_file_uploader plugin to handle the file upload using dio package. Provides the capability to upload a file in chunks with built-in retry handling.

flutter_saver
👍 4   ⬇️ 70
Dart 3 compatible
Maintenance Status: Good

A Flutter package for saving images and downloadable links across all platforms with support for various formats.

jopen
👍 4   ⬇️ 25
Dart 3 compatible
Maintenance Status: Poor

JOpen is a Plugin that allows you to open any files in Android, JOpen provides a way to open files by file path.

name_plus
👍 3   ⬇️ 134
Dart 3 compatible
Maintenance Status: Poor

Automatically increment File & Directory name and create.

wfile
👍 3   ⬇️ 86
Dart 3 compatible
Maintenance Status: Average

Convenient work with JSON, image, text, binary files across multiple platforms. Can detect MIME types.

magika_dart
👍 2   ⬇️ 201
Dart 3 compatible
Maintenance Status: Good

Fast and accurate AI powered file content types detection

external_path_ios_mac Card Image
external_path_ios_mac
👍 2   ⬇️ 86
Dart 3 compatible
Maintenance Status: Good

A Flutter package for retrieving directory paths on iOS and macOS devices, ensuring file access and management across platforms.

downloads_path_provider
👍 68   ⬇️ 65

Maintenance Status: Poor

Flutter plugin to get the download directory for Android.

storage_path
👍 53   ⬇️ 35

Maintenance Status: Poor

A flutter plugin to get image, audio, video and files path.

path_provider_ex
👍 25   ⬇️ 26

Maintenance Status: Poor

App files directory, root storage, and available space for ext storage and SD card on Android