aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2023-09-08 08:51:54 -0400
committerGitHub <[email protected]>2023-09-08 14:51:54 +0200
commit2f6a49f8d850806da94a92d0bd23e22735bf19a2 (patch)
treeca11d34ade5cdded3d59c37294c1c2a299738800 /src/zencore/include
parent0.2.20 (diff)
downloadzen-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.h1
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
{