OpenRCT2/src/openrct2/core/File.h

29 lines
1.1 KiB
C
Raw Normal View History

2016-12-05 04:30:25 +01:00
/*****************************************************************************
* Copyright (c) 2014-2018 OpenRCT2 developers
2016-12-05 04:30:25 +01:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2016-12-05 04:30:25 +01:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
2016-12-05 04:30:25 +01:00
*****************************************************************************/
#pragma once
#include <string>
#include <string_view>
2017-05-17 20:11:42 +02:00
#include <vector>
2016-12-05 04:30:25 +01:00
#include "../common.h"
namespace File
{
2017-02-09 22:48:44 +01:00
bool Exists(const std::string &path);
bool Copy(const std::string &srcPath, const std::string &dstPath, bool overwrite);
bool Delete(const std::string &path);
bool Move(const std::string &srcPath, const std::string &dstPath);
std::vector<uint8_t> ReadAllBytes(const std::string_view& path);
std::string ReadAllText(const std::string_view& path);
void WriteAllBytes(const std::string &path, const void * buffer, size_t length);
2017-05-17 20:11:42 +02:00
std::vector<std::string> ReadAllLines(const std::string &path);
uint64_t GetLastModified(const std::string &path);
2018-05-04 22:40:09 +02:00
} // namespace File