diff options
| author | Dan Engelbrecht <[email protected]> | 2023-09-08 08:51:54 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-08 14:51:54 +0200 |
| commit | 2f6a49f8d850806da94a92d0bd23e22735bf19a2 (patch) | |
| tree | ca11d34ade5cdded3d59c37294c1c2a299738800 /src/zencore/include | |
| parent | 0.2.20 (diff) | |
| download | zen-2f6a49f8d850806da94a92d0bd23e22735bf19a2.tar.xz zen-2f6a49f8d850806da94a92d0bd23e22735bf19a2.zip | |
Extend http client (#387)
* extend http client with configuration, headers, parameters and disk streaming upload/download
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/filesystem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/filesystem.h b/src/zencore/include/zencore/filesystem.h index 1a582672b..37a562664 100644 --- a/src/zencore/include/zencore/filesystem.h +++ b/src/zencore/include/zencore/filesystem.h @@ -66,6 +66,7 @@ ZENCORE_API bool ScanFile(std::filesystem::path Path, uint64_t ChunkSize, std::f ZENCORE_API void WriteFile(std::filesystem::path Path, const IoBuffer* const* Data, size_t BufferCount); ZENCORE_API void WriteFile(std::filesystem::path Path, IoBuffer Data); ZENCORE_API void WriteFile(std::filesystem::path Path, CompositeBuffer Data); +ZENCORE_API bool MoveToFile(std::filesystem::path Path, IoBuffer Data); struct CopyFileOptions { |