![]() |
Rosetta
2015.38
|
Platform independent operations on files (except I/O) More...
#include <utility/file/FileName.hh>
#include <string>
#include <fstream>
#include <utility/vector1.hh>
Namespaces | |
utility | |
unresizable vector whose size is known at compile time, which may be allocated on the stack, and which indexes from 1. | |
utility::file | |
Functions | |
bool | utility::file::file_exists (std::string const &path) |
Does File Exist? More... | |
bool | utility::file::is_directory (std::string const &path) |
Is the given path a directory? More... | |
int | utility::file::file_delete (std::string const &path) |
Delete File. More... | |
std::string | utility::file::file_extension (std::string const &filename) |
Extension of a File Name. More... | |
std::string | utility::file::file_basename (std::string const &filename) |
Basename of a File Name. More... | |
long | utility::file::file_size (std::string const &filename) |
Platform independent way of getting file size. More... | |
bool | utility::file::create_blank_file (std::string const &blank_file) |
Create a blank file if it doesn't already exist. More... | |
bool | utility::file::create_directory (std::string const &dir_path) |
Create a directory if it doesn't already exist. More... | |
bool | utility::file::create_directory_recursive (std::string const &dir_path) |
Create a directory and its parent directories if they doesn't already exist. More... | |
bool | utility::file::trytry_ifstream_open (std::ifstream &ifstream_, std::string const &name, std::ios_base::openmode open_mode) |
Try to open file a few times just in case it is locked (from BOINC LIB) More... | |
bool | utility::file::trytry_ofstream_open (std::ofstream &ofstream_, std::string const &name, std::ios_base::openmode open_mode) |
Try to open file a few times just in case it is locked (from BOINC LIB) More... | |
int | utility::file::list_dir (std::string dir, utility::vector1< std::string > &files) |
FileName | utility::file::combine_names (utility::vector1< std::string > file_name_strings) |
Platform independent operations on files (except I/O)