crates.io API documentation actively developed TravisCI status AppVeyor status License: MIT/Apache-2.0

dirs

Introduction

The library provides the location of these directories by leveraging the mechanisms defined by - the XDG base directory and the XDG user directory specifications on Linux - the Known Folder API on Windows - the Standard Directories guidelines on macOS

Platforms

This library is written in Rust, and supports Linux, macOS and Windows.

It's mid-level sister library, directories, is available for Rust (directories-rs) and on the JVM (directories-jvm).

Usage

Dependency

Add the library as a dependency to your project by inserting

toml dirs = "1.0"

into the [dependencies] section of your Cargo.toml file.

Example

Library run by user Alice:

```rust extern crate dirs;

dirs::home_dir(); // Lin: Some(/home/alice) // Win: Some(C:\Users\Alice) // Mac: Some(/Users/Alice)

dirs::audio_dir(); // Lin: Some(/home/alice/Music) // Win: Some(C:\Users\Alice\Music) // Mac: Some(/Users/Alice/Music)

dirs::config_dir(); // Lin: Some(/home/alice/.config) // Win: Some(C:\Users\Alice\AppData\Roaming) // Mac: Some(/Users/Alice/Library/Preferences)

dirs::executable_dir(); // Lin: Some(/home/alice/.local/bin) // Win: None // Mac: None ```

Design Goals

Features

If you want to compute the location of cache, config or data directories for your own application or project, use ProjectDirs of the directories project instead.

| Function name | Value on Linux | Value on Windows | Value on macOS | | ---------------- | ------------------------------------------------------------------------------------------------ | --------------------------------- | ------------------------------------------- | | home_dir | Some($HOME) | Some({FOLDERID_Profile}) | Some($HOME) | | cache_dir | Some($XDG_CACHE_HOME) or Some($HOME/.cache) | Some({FOLDERID_LocalAppData}) | Some($HOME/Library/Caches) | | config_dir | Some($XDG_CONFIG_HOME) or Some($HOME/.config) | Some({FOLDERID_RoamingAppData}) | Some($HOME/Library/Preferences) | | data_dir | Some($XDG_DATA_HOME) or Some($HOME/.local/share) | Some({FOLDERID_RoamingAppData}) | Some($HOME/Library/Application Support) | | data_local_dir | Some($XDG_DATA_HOME) or Some($HOME/.local/share) | Some({FOLDERID_LocalAppData}) | Some($HOME/Library/Application Support) | | executable_dir | Some($XDG_BIN_HOME/../bin) or Some($XDG_DATA_HOME/../bin) or Some($HOME/.local/bin) | None | None | | runtime_dir | Some($XDG_RUNTIME_DIR) or None | None | None | | audio_dir | Some(XDG_MUSIC_DIR) or None | Some({FOLDERID_Music}) | Some($HOME/Music/) | | desktop_dir | Some(XDG_DESKTOP_DIR) or None | Some({FOLDERID_Desktop}) | Some($HOME/Desktop/) | | document_dir | Some(XDG_DOCUMENTS_DIR) or None | Some({FOLDERID_Documents}) | Some($HOME/Documents/) | | download_dir | Some(XDG_DOWNLOAD_DIR) or None | Some({FOLDERID_Downloads}) | Some($HOME/Downloads/) | | font_dir | Some($XDG_DATA_HOME/fonts/) or Some($HOME/.local/share/fonts/) | None | Some($HOME/Library/Fonts/) | | picture_dir | Some(XDG_PICTURES_DIR) or None | Some({FOLDERID_Pictures}) | Some($HOME/Pictures/) | | public_dir | Some(XDG_PUBLICSHARE_DIR) or None | Some({FOLDERID_Public}) | Some($HOME/Public/) | | template_dir | Some(XDG_TEMPLATES_DIR) or None | Some({FOLDERID_Templates}) | None | | video_dir | Some(XDG_VIDEOS_DIR) or None | Some({FOLDERID_Videos}) | Some($HOME/Movies/) |

Comparison

There are other crates in the Rust ecosystem that try similar or related things. Here is an overview of them, combined with ratings on properties that guided the design of this crate.

Please take this table with a grain of salt: a different crate might very well be more suitable for your specific use case. (Of course my crate achieves my design goals better than other crates, which might have had different design goals.)

| Library | Status | Lin | Mac | Win |Base|User|Proj|Conv| | --------------------------------------------------------- | -------------- |:---:|:---:|:---:|:--:|:--:|:--:|:--:| | appdirs | Unmaintained | ✔ | ✔ | ✔ | 🞈 | ✖ | ✔ | ✖ | | appdirs2 | Maintained | ✔ | ✔ | ✔ | 🞈 | ✖ | ✔ | ✖ | | dirs | Developed | ✔ | ✔ | ✔ | ✔ | ✔ | ✖ | ✔ | | directories | Developed | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | sappdir | Unmaintained? | ✔ | ✖ | 🞈 | ✖ | ✖ | 🞈 | ✖ | | standard_paths | Maintained | ✔ | ✖ | ✔ | ✔ | ✔ | ✔ | ✖ | | xdg | Maintained | ✔ | ✖ | ✖ | ✔ | ✖ | ✔ | 🞈 | | xdg-basedir | Unmaintained? | ✔ | ✖ | ✖ | ✔ | ✖ | ✖ | 🞈 | | xdg-rs | Obsolete | ✔ | ✖ | ✖ | ✔ | ✖ | ✖ | 🞈 |

Versioning

After 1.0, the version number of this library consists of a whole number, which is incremented with each release. (Think semantic versioning without minor and patch versions.)