blob: c9a8b791f09830211c1999c0ef40992ffbc0968b [file] [log] [blame]
Hao Zhou15d4d212023-07-11 20:18:04 +00001// Copyright 2023 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "file_system_wrapper_impl.hpp"
16
17#include <fstream>
18#include <system_error>
19
20namespace google
21{
22namespace ipmi
23{
24namespace fs = std::filesystem;
25
26bool FileSystemWrapper::exists(const fs::path& path, std::error_code& ec) const
27{
28 return fs::exists(path, ec);
29}
30
31void FileSystemWrapper::rename(const fs::path& oldPath, const fs::path& newPath,
32 std::error_code& ec) const
33{
34 fs::rename(oldPath, newPath, ec);
35}
36
37void FileSystemWrapper::create(const char* path) const
38{
39 std::ofstream ofs;
40 ofs.open(path, std::ofstream::out);
41 ofs.close();
42}
43} // namespace ipmi
44} // namespace google