app_dirs2 2.5.5

Put your app's data in the right place on every platform. Community-maintained project.
Documentation
1
2
3
4
5
6
7
8
9
use crate::common::*;
use crate::AppDataType::*;
use std::path::PathBuf;

pub const USE_AUTHOR: bool = false;

pub fn get_app_dir(_t: AppDataType) -> Result<PathBuf, AppDirsError> {
    Err(AppDirsError::NotSupported)
}