mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:30:06 +00:00
Directory listing
This commit is contained in:
parent
b9fc22d63e
commit
d5d9285736
6 changed files with 337 additions and 0 deletions
30
wxdata/include/scwx/network/dir_list.hpp
Normal file
30
wxdata/include/scwx/network/dir_list.hpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#pragma once
|
||||
|
||||
#include <chrono>
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace network
|
||||
{
|
||||
|
||||
struct DirListRecord
|
||||
{
|
||||
std::string filename_ = {};
|
||||
std::filesystem::file_type type_ = std::filesystem::file_type::unknown;
|
||||
std::chrono::system_clock::time_point mtime_ =
|
||||
{}; ///< Modified time (server time)
|
||||
size_t size_ = 0u; ///< Approximate file size in bytes
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Retrieve Directory Listing
|
||||
*
|
||||
* Retrieves a directory listing. Supports default Apache-style directory
|
||||
* listings only.
|
||||
*/
|
||||
std::vector<DirListRecord> DirList(const std::string& baseUrl);
|
||||
|
||||
} // namespace network
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue