English ยท Franรงais
๐ฑ Mobile
๐บ Android TV
- Full D-pad navigation: the sidebar, toolbar and file lists are reachable and highlight correctly with a remote.
- The first-launch onboarding works on TV.
- Fixed getting stuck in an empty folder (focus falls back to the toolbar) and a focus jump when toggling the FTP server.
- A welcome flow that requests the permissions the app needs (all-files access, notifications) up front, so nothing has to be granted mid-use later.
- SD cards and USB drives appear automatically under "Internal storage" and refresh when you plug one in. No manual "Add storage" SAF dance.
- Rename a volume and choose its icon; USB vs SD is auto-detected (with a manual override).
- A multi-partition drive is grouped under a single "USB drive" / "SD card" header, with its partitions nested as "Partition 1, 2, โฆ".
- Eject shortcut, and the free-space figure refreshes live (e.g. right after deleting files) instead of only after a restart.
- New Settings โ Default apps: pick which app opens Images, Audio, Video, PDF and Text, so those files open straight away in your app of choice instead of asking every time.
- A progress button appears in the toolbar during copies, moves and archive operations, opening a popover with live per-file details instead of only a notification.
- Firebase (Analytics + Crashlytics) removed entirely. Nothing about your usage or crashes is sent anywhere, and the app also starts faster without it.
- Cloud backup and data extraction disabled, so Android never ships app data off-device.
- Status-bar icons tint themselves to the header/drawer colour (light or dark), fixing unreadable white-on-white and black-on-dark cases, with a smooth crossfade when the drawer opens.
- Dark app bar in night mode instead of the light primary tint.
- Icons shown in the โฎ overflow menus; themed popup in dark mode.
- Navigation drawer redesigned and themed for Material You (M3), including dark-mode colour and switch-thumb fixes.
- Long names wrap instead of being cut off with "โฆ".
- Internal storage renamed with a phone icon; a real ribbon marks bookmarked folders; refreshed FTP-server icon.
- Optional edge-to-edge display (Settings โ Interface โ "Edge-to-edge display"): content scrolls behind the status and navigation bars instead of stopping above them. Off by default.
- Friendly message when a folder can't be opened, instead of a silent failure.
- Optional per-server encryption for SMB shares.
- Fixed a crash on tablets in landscape, and the status/navigation bars are now coloured to match the app bar.
- Back exits at the root instead of leaving the app stuck, and long toolbar titles now marquee-scroll.
- All fork-specific strings translated into 31 languages.
- App ID changed to
fr.vroot.vfilesso it installs alongside the Play/F-Droid build rather than conflicting with it.
Two ways to get updates:
- Direct download: grab the latest APK from the Releases page and install it over your current install. Signed with the same key every time, so your files and settings are kept.
- Omnify: my own F-Droid client fork that installs and tracks apps straight from their GitHub repo. Add this repo and it keeps VFiles up to date for you.
Either way, the app opening the file (browser, file manager, or Omnify) will ask, the first time, for permission to install unknown apps.
VFiles exposes every backend it supports through Android's file picker, not just local storage: SMB, FTP, SFTP and WebDAV shares, and the contents of archives, all show up as regular folders inside any app's "Open" or "Save" dialog, the same way a local folder would.
Android routes ACTION_OPEN_DOCUMENT, ACTION_OPEN_DOCUMENT_TREE and ACTION_GET_CONTENT intents through Google DocumentsUI (com.google.android.documentsui), even when VFiles is installed as a DocumentsProvider. Disabling that system app makes Android fall back to VFiles as the picker for every app on the device. No root required, just ADB over USB.
# Disable the main DocumentsUI app
adb shell pm disable-user --user 0 com.google.android.documentsui
# Disable its overlay module (present on some ROMs; ignore the error if absent)
adb shell pm disable-user --user 0 com.google.android.overlay.modules.documentsuiAfter running these, any app that opens a file or folder picker will use VFiles instead.
adb shell pm enable com.google.android.documentsui
adb shell pm enable com.google.android.overlay.modules.documentsui- No root needed:
pm disable-user --user 0runs over a standard ADB (USB debugging) connection. - Tested on LineageOS and other AOSP-based ROMs. On stock OEM ROMs the overlay package name may differ or be absent; the
pm disable-usercommand for the main package is sufficient in that case. - The change survives reboots but is per-user (only affects the user whose session is active when ADB runs, typically user 0).
- If another picker app is installed (e.g. a third-party file manager with a DocumentsProvider), Android may show a chooser. Install only one provider if you want zero prompts.
A separate, opt-in systemPicker build variant lets a ROM builder replace DocumentsUI outright: signed with the ROM's platform key, VFiles hands back the exact same storage URIs DocumentsUI would, so even apps that specifically require them (not just apps using the generic picker above) work against it. See docs/systempicker-integration.md for the requirements and integration steps. This does not affect a normal install in any way.
Material Files is an open-source Material Design file manager for Android 6.0+:
- Material Design with attention to detail, and breadcrumb navigation.
- Root support; view/extract/create common archives; FTP, SFTP, SMB and WebDAV.
- Customisable colours and night mode (with optional true black).
- Linux-aware (symbolic links, permissions and SELinux context) via real system calls rather than parsing
ls, built on the Java NIO2 file API withViewModel/LiveData.
Material Files is already an excellent app. This is not a competitor or a criticism of the original. I forked it to build a version tailored to my own daily use: mostly small UI-consistency improvements, bug fixes, and first-class Android TV support. Everything above sits on top of the original author's work, and all credit for the app itself goes to him.
- Original app and all of its core features: Hai Zhang and contributors.
- This fork: Victor-root.
Released under the GNU General Public License v3.0, the same license as the original. See LICENSE.
Copyright (C) 2018 Hai Zhang
Copyright (C) 2024 Victor-root (fork modifications)
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version. It is distributed WITHOUT ANY WARRANTY; see the GNU
General Public License for more details.


