osquery-1/osquery/filesystem.h
2014-08-02 11:28:38 -07:00

23 lines
689 B
C++

// Copyright 2004-present Facebook. All Rights Reserved.
#ifndef OSQUERY_FILESYSTEM_H
#define OSQUERY_FILESYSTEM_H
#include <string>
#include <vector>
#include "osquery/core/status.h"
namespace osquery { namespace fs {
// readFile accepts a const reference to an std::string indicating the path of
// the file that you'd like to read and a non-const reference to an std::string
// which will be populated with the contents of the file (if all operations are
// successful). An osquery::core::Status is returned indicating the success or
// failure of the operation.
osquery::core::Status readFile(const std::string& path, std::string& content);
}}
#endif /* OSQUERY_FILESYSTEM_H */