12345678910111213141516171819202122232425262728293031 |
- #ifndef FILE_UTIL_H
- #define FILE_UTIL_H
- #include <stdint.h>
- #include <fstream>
- #include <iostream>
- #include <string>
- namespace qcloud_cos {
- class FileUtil {
- public:
- // 获取文件内容
- static std::string GetFileContent(const std::string& path);
- // 获取文件大小
- static uint64_t GetFileLen(const std::string& path);
- static bool IsDirectoryExists(const std::string& path);
- static bool IsDirectory(const std::string& path);
- static std::string GetDirectory(const std::string& path);
- // 获取文件CRC64
- static uint64_t GetFileCrc64(const std::string& file);
- #if defined(_WIN32)
- static uint64_t GetFileLen(const std::wstring& path);
- static uint64_t GetFileCrc64(const std::wstring& file);
- static std::wstring GetWideCharFilePath(const std::string file_path);
- #endif
- static std::string GetFileMd5(const std::string& file);
- };
- } // namespace qcloud_cos
- #endif
|