Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 1.63 KB

File metadata and controls

57 lines (47 loc) · 1.63 KB

Читать на русском

FileExplorer

A fast and lightweight desktop file manager.

Features

  • High performance
  • Ability to work with other disks
  • Instant customizable file search
  • Basic file operations: creating, adding to favorites, copying, cutting, renaming, opening, deleting and sorting by various parameters
  • Minimalistic UI
  • Localization in Russian and English

Architecture

  • UI based on the egui library
  • Core logic written in pure Rust (file system operations and indexing)

Roadmap

  • Application caching, so that you don’t have to index file every time you launch
  • Customizable UI and color themes

Usage

For users

  1. Go to the Releases section.
  2. Download the Explorer.zip archive from the last version.
  3. Unpack the archive and run the exe file.

For developers

Requirements

  • Rust - actual stable version.
  • C++ Build Tools - they come with Visual Studio or Build Tools for VS. When you install Rust using rustup, it will prompt you to download the Visual Studio Installer and check the box next to Desktop development with C++.

Build and run

  1. Clone the repository:
git clone https://github.com/vladislvd/FileExplorer.git
  1. Go to the project directory:
cd FileExplorer
  1. Run the project in development mode:
cargo run

or in release mode:

cargo run --release
  1. Compiled executable files will be located in the target/debug/ or target/release/ directory accordingly.

Screenshots