2023-10-02 18:04:54 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "head.h"
|
|
|
|
|
namespace Tools {
|
2023-10-03 00:25:23 +08:00
|
|
|
auto GetExeFileName() -> std::string;
|
|
|
|
|
auto GetExePath() -> std::string;
|
|
|
|
|
auto GetFiles(const std::string& path, std::vector<std::string>& files) -> void;
|
|
|
|
|
auto GetDirs(const std::string& path)
|
|
|
|
|
-> std::pair<std::vector<std::string>, std::vector<std::string>>;
|
2023-10-11 03:58:34 +08:00
|
|
|
auto toLower(const std::string& str) -> std::string;
|
2023-10-03 00:25:23 +08:00
|
|
|
}; // namespace Tools
|