This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
RelayFile/ClientCore/ClientFile.h

21 lines
342 B
C
Raw Normal View History

2025-05-12 22:07:06 +08:00
#ifndef CLIENTFILE_H
#define CLIENTFILE_H
#include <InfoDirFile.hpp>
#include <filesystem>
namespace fs = std::filesystem;
class ClientFile
{
public:
ClientFile();
public:
bool GetDirFiles(const std::wstring& path, DirFileInfoVec& vec);
2025-05-12 22:07:06 +08:00
wxString GetLastErr() const;
private:
wxString lastErr_;
};
#endif // CLIENTFILE_H