flatten 20260225
This commit is contained in:
28
tjp/core/file/copy.cpp
Normal file
28
tjp/core/file/copy.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
// TJP COPYRIGHT HEADER
|
||||
|
||||
|
||||
#ifdef TJP_CORE_HEADER_ONLY
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include <tjp/core/header_only/compile.h>
|
||||
|
||||
#include "copy.hpp"
|
||||
#include "read.hpp"
|
||||
#include "write.hpp"
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
namespace tjp::core::file {
|
||||
|
||||
TJP_CORE_HEADER_ONLY_INLINE
|
||||
bool copy(const String &from, const String &to)
|
||||
{
|
||||
if (auto contents = read(from))
|
||||
if (write(to, *contents))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user