omni::io::cfile
NAME

omni::io::cfile

A namespace of omni::io

#include <omni/io.hpp>

MEMBERS

bool omni::io::cfile::copy(const std::string& file, const std::string& new_name, bool overwrite)
bool omni::io::cfile::create(const std::string& file, bool create_path)
bool omni::io::cfile::exist(const std::string& file)
bool omni::io::cfile::exists(const std::string& file)
std::string omni::io::cfile::get_contents(const std::string& file)
uint64_t omni::io::cfile::get_size(const std::string& file)
bool omni::io::cfile::move(const std::string& file, const std::string& new_name, bool create_path)
uint64_t omni::io::cfile::read(const std::string& file, omni::seq::uchar_t& buffer)
uint64_t omni::io::cfile::read_raw(const std::string& file, unsigned char* buffer, uint64_t length)
bool omni::io::cfile::remove(const std::string& file)
bool omni::io::cfile::rename(const std::string& file, const std::string& new_name, bool create_path)
bool omni::io::cfile::set_size(const std::string& file, uint64_t size)
uint64_t omni::io::cfile::write(const std::string& file, const omni::seq::uchar_t& buffer, bool append)
uint64_t omni::io::cfile::write_line(const std::string& file, const omni::seq::uchar_t& buffer, bool append)
uint64_t omni::io::cfile::write_line_raw(const std::string& file, const unsigned char* buffer, uint64_t length, bool append)
uint64_t omni::io::cfile::write_raw(const std::string& file, const unsigned char* buffer, uint64_t length, bool append)

SYNOPSIS

No synopsis.

top

DESCRIPTION

No description.

top