blob: 33744bbd03f8452625779bd3321ddfcd88feb410 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TOPAZ_RUNTIME_DART_UTILS_FILES_H_
#define TOPAZ_RUNTIME_DART_UTILS_FILES_H_
#include <string>
namespace dart_utils {
// Reads the contents of the file at the given path or file descriptor and
// stores the data in result. Returns true if the file was read successfully,
// otherwise returns false. If this function returns false, |result| will be
// the empty string.
bool ReadFileToString(const std::string& path, std::string* result);
bool ReadFileToStringAt(int dirfd, const std::string& path,
std::string* result);
// Writes the given data to the file at the given path. Returns true if the data
// was successfully written, otherwise returns false.
bool WriteFile(const std::string& path, const char* data, ssize_t size);
} // namespace dart_utils
#endif // TOPAZ_RUNTIME_DART_UTILS_FILES_H_