1 unstable release
new 0.1.0 | Mar 31, 2025 |
---|
#845 in Filesystem
47KB
836 lines
ls-rs
A fast and feature-rich file manager written in Rust.
Features
- Fast file system traversal
- Detailed file information
- Multiple sorting options
- File grouping by various criteria
- Recursive directory listing
- Hidden file filtering
- Multiple output formats
- Total size calculation
Installation
cargo install ls-rs
Usage
ls-rs [OPTIONS] [PATH]
Options
-a, --all
: Show hidden files (files starting with '.')-l, --long
: Use detailed view (shows more information)-s, --sort <SORT_OPTION>
: Sort by: name, size, modified, type (default: name)-r, --recursive
: Recursively list directories-t, --total
: Show total size of all files-g, --group-by <GROUP_OPTION>
: Group totals by: none, folder, all-folders, extension, permissions, executable, name-starts-with, name-contains, name-ends-with (default: none)--pattern <PATTERN>
: Pattern for name-based grouping (required for name-starts-with, name-contains, name-ends-with)-f, --format <FORMAT>
: Output format: text, table (default: text)
Examples
# List files in current directory
ls-rs
# Show hidden files
ls-rs -a
# Sort by size
ls-rs -s size
# Group by extension
ls-rs -g extension
# Recursive listing
ls-rs -r
# Custom path
ls-rs /path/to/directory
Grouping Options
The --group-by
option supports the following values:
none
: No grouping (default)folder
: Group by parent folderall-folders
: Group by all parent foldersextension
: Group by file extensionpermissions
: Group by file permissionsexecutable
: Group by executable statusname-starts-with
: Group by name prefix (requires --pattern)name-contains
: Group by name substring (requires --pattern)name-ends-with
: Group by name suffix (requires --pattern)
Output Formats
Text Format
drwxr-xr-x user 4096 2024-03-20 10:00:00 directory/
-rw-r--r-- user 1234 2024-03-20 10:00:00 file.txt
Table Format
Permissions Owner Size Modified Name
drwxr-xr-x user 4096 2024-03-20 10:00:00 directory/
-rw-r--r-- user 1234 2024-03-20 10:00:00 file.txt
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Dependencies
~2.2–3MB
~54K SLoC