- π Blazing Fast Search: Multiple search algorithms with ~15ms response time vs 3min 45sec for Windows Explorer
- π Advanced Search Engine:
- Fast fuzzy search with ART (Adaptive Radix Tree) implementation
- LRU caching for optimal performance
- Multiple search algorithms for different use cases
- π Comprehensive File Operations: Copy, move, delete, rename with robust error handling
- π SFTP Support: Full remote file system operations including browsing, uploading, and downloading
- π Advanced Permissions: File and directory permission management
- π File Metadata: Comprehensive metadata viewing and management
- π¨ File Hashing: MD5, SHA2, and CRC32 hash generation for file integrity
- π File Templates: Template system for creating new files
- ποΈ File Preview: Built-in preview system for various file types (spotlight-like)
- πΎ Volume Operations: Drive management and volume operations
- βοΈ Customizable Settings: Extensive configuration options
- π¨ Modern UI: React-based interface with context menus and responsive design
Cross platform compatibility is given and it supports all common Linux distros, macOS, and Windows which are supported by Tauri. If there is an interest in contributing feel free to join the discord channel from Connaticus or message me or my team.
This is a Tauri-based application with a Rust backend and React frontend:
- Search Engine: Multiple algorithms with LRU caching
- File System Operations: Local and SFTP file operations
- Command System: Modular command handlers for different operations
- Error Handling: Centralized error management with standardized codes (401-500)
- Feature Flags: Extensive Cargo features for different build configurations
- Provider Pattern: Hierarchical context providers for state management
- Modern UI: Component-based architecture with custom hooks
- Responsive Design: Adaptive layouts for different screen sizes
- Real-time file watching with caching service
- Search/caching progress indicators
- Enhanced terminal integration
Our plan is to provide installers for the supported operating systems or common package installers.
Unfortunately we have serious Problems with Tauri and creating installers. There are some installers
for linux under dist-builds. In the future there will be ready to go packages for macOS, Linux and
Windows until then please refer to the compilation from source for your computer.
- NodeJS (stable version)
- Rust (stable version)
- Tauri CLI (version >2.4.0)
- Cargo (comes with Rust)
- Vite (comes with Tauri CLI)
Other required dependencies are installed automatically by the Tauri CLI. If they are not please contact us.
Note that on macOS you need XCode installed with the build tools.
# Install Tauri CLI
cargo install tauri-cli # The version should be >2.4.0 if not already installed
# Build for production
cargo tauri buildGo into the build directory and run the created binary. The binary is located in
FileExplorer/src-tauri/target/release/bundle/. The name of the binary is file-explorer or
Under Linux the given command generates an .deb, .rpm, AppImage in the
FileExplorer/src-tauri/target/release/bundle folder. Select the one which fits your distribution.
Either run the AppImage, Binary or install the .deb or .rpm package.
#Make sure the image is runnable
chmod +x yourapp-x.y.z.AppImage
#Run the image. After that it should behaving like a native application
./yourapp-x.y.z.AppImageRecommended is to use the binary created in FileExplorer/src-tauri/target/release/src-tauri. Give
it executable permissions and then run it from the terminal. You can also put it into your user
binaries folder, e.g. ~/bin, and add it to your PATH variable.
# Install Tauri CLI
cargo install tauri-cli # The version should be >2.4.0 if not already installed
# Build for production
cargo tauri buildTauri creates an .dmg or .app bundle under the folder
FileExplorer/src-tauri/target/release/bundle/macos/. Recommended is to use the binary created in
FileExplorer/src-tauri/target/release/src-tauri. Give it executable permissions and then run it
from the terminal. You can also put it into your user binaries folder, e.g. ~/bin, and add it to
your PATH variable.
This generates an installer for your system, which lays in
FileExplorer/src-tauri/target/release/bundle/msi/. There should be an .exe or .msi which is
called file-explorer. To install it you need to double click the file and install like any other
application. Then you can completely remove the FileExplorer folder.
# Install Tauri CLI
cargo install tauri-cli # The version should be >2.4.0
# Build for production
cargo tauri build
# Run the development server
cargo tauri devThe project uses feature flags for different configurations:
# Run all tests including long-running ones
cargo test --features full
# Run with benchmark features
cargo test --features benchmarks
# Enable all logging during tests
cargo test --features log-allAvailable feature combinations:
full- All features including long tests, benchmarks, and file openinglog-search- Enable search progress and error logginglog-index- Enable indexing progress and error logging
The Explorer was started as a project from the youtuber Connaticus. He documented parts of his development journey online in two Videos: I Made a FAST File Explorer and How I RUINED My Rust Project.
Lots of changes were made in the course of the InformatiCup from the year 2025. It is a competition in Germany. The given task was to contribute to existing open source projects. The team members were Marco Brandt, Daniel Schatz, Lauritz Wiebusch, SΓΆren Panten. The repo can be found under FileExplorer.
This file explorer emphasizes extreme performance with benchmarks showing significant improvements over native solutions (tested on 170,000 paths):
| Operation | Fast File Explorer | Windows Explorer |
|---|---|---|
| File search | ~15ms | 3min 45sec |
- Multiple Search Algorithms: Fast fuzzy search, ART (Adaptive Radix Tree)
- LRU Caching: Intelligent caching for search results
- Rust Backend: Memory-safe, zero-cost abstractions
- Modular Architecture: Command-based system with feature flags
The application uses several configuration files:
src-tauri/config/settings.json- Application settingssrc-tauri/config/meta_data.json- Metadata configurationsrc-tauri/tauri.conf.json- Tauri application configurationpackage.json- Frontend dependencies and scripts
Contributions are welcome! Before contributing, please read our contributing guidelines.
This project is licensed under the GNU General Public License v3.0 β see the LICENSE file for details.
Have questions or feedback? Open an issue on our GitHub repository!





