2017-04-29 23:21:52 +05:30
|
|
|
#ifndef BASE_FILE_UTILS_H
|
|
|
|
#define BASE_FILE_UTILS_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace file_utils {
|
|
|
|
int open_file(std::string const &path, int flags);
|
|
|
|
bool file_exists(std::string const &path);
|
|
|
|
void check_file_exists(std::string const &file);
|
|
|
|
int create_block_file(std::string const &path, off_t file_size);
|
|
|
|
int open_block_file(std::string const &path, off_t min_size, bool writeable, bool excl = true);
|
|
|
|
uint64_t get_file_length(std::string const &file);
|
2017-09-28 19:09:24 +05:30
|
|
|
void zero_superblock(std::string const &path);
|
2017-04-29 23:21:52 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|