/* * Copyright (C) 2021 ~ 2022 Deepin Technology Co., Ltd. * * Author: weizhixiang * * Maintainer: weizhixiang * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef BASEDIR_H #define BASEDIR_H #include #include // 基础目录类, 目录结尾统一包含斜杠/ class BaseDir { public: BaseDir(); static std::string homeDir(); static std::string userDataDir(); static std::vector sysDataDirs(); static std::string userConfigDir(); static std::vector sysConfigDirs(); static std::string userCacheDir(); static std::string userAppDir(); static std::vector sysAppDirs(); static std::vector appDirs(); static std::vector autoStartDirs(); static std::string userAutoStartDir(); private: static void filterNotAbs(std::vector& dirs); static void addSuffixSlash(std::vector& dirs); }; #endif // BASEDIR_H