#include <utility>
#include <memory>
#include <fc/reflect/typename.hpp>
#include <fc/optional.hpp>
#include <fc/fwd.hpp>
Go to the source code of this file.
|
bool | fc::exists (const path &p) |
|
bool | fc::is_directory (const path &p) |
|
bool | fc::is_regular_file (const path &p) |
|
void | fc::create_directories (const path &p) |
|
void | fc::remove_all (const path &p) |
|
path | fc::absolute (const path &p) |
|
path | fc::make_relative (const path &from, const path &to) |
|
path | fc::canonical (const path &p) |
|
uint64_t | fc::file_size (const path &p) |
|
uint64_t | fc::directory_size (const path &p) |
|
bool | fc::remove (const path &p) |
|
void | fc::copy (const path &from, const path &to) |
|
void | fc::rename (const path &from, const path &to) |
|
void | fc::resize_file (const path &file, size_t s) |
|
void | fc::chmod (const path &p, int perm) |
|
void | fc::create_hard_link (const path &from, const path &to) |
|
path | fc::unique_path () |
|
path | fc::temp_directory_path () |
|
const path & | fc::home_path () |
|
const path & | fc::app_path () |
|
const fc::path & | fc::current_path () |
|
void | fc::to_variant (const fc::path &, fc::variant &, uint32_t max_depth=1) |
|
void | fc::from_variant (const fc::variant &, fc::path &, uint32_t max_depth=1) |
|