跳转至

File paths.h

File List > include > qqmusic > utils > paths.h

Go to the documentation of this file

#ifndef QQMUSIC_UTILS_CACHE_H
#define QQMUSIC_UTILS_CACHE_H
#include <filesystem>

namespace qqmusic::utils {

namespace fs = std::filesystem;

class PathManager {
public:
    static PathManager& get_instance();

    void set_download_path(std::string_view path);
    void set_download_path(const fs::path& path);

    void set_cache_path(std::string_view path);
    void set_cache_path(const fs::path& path);


    void set_log_path(std::string_view path);
    void set_log_path(const fs::path& path);

    [[nodiscard]] fs::path get_cache_path() const;

    [[nodiscard]] fs::path get_download_path() const;

    [[nodiscard]] fs::path get_log_path() const;

private:
    PathManager();
    fs::path cache_path;
    fs::path log_path;
    fs::path download_path;
};

} // namespace qqmusic::utils

#endif // !QQMUSIC_UTILS_CACHE_H