taco-db  0.1.0
Namespaces | Functions
fsutils.h File Reference
#include "tdb.h"

Go to the source code of this file.

Namespaces

 taco
 

Functions

int pg_mkdir_p (char *path, int omode)
 Creates a directory and, if necessary, parent directories. More...
 
bool taco::file_exists (const char *path)
 
bool taco::regular_file_exists (const char *path)
 
bool taco::dir_exists (const char *path)
 
void taco::remove_dir (const char *path)
 
bool taco::dir_empty (const char *path)
 
void taco::copy_dir (const char *srcpath, const char *dstpath)
 
std::string taco::mktempfile (std::string prefix)
 
std::string taco::mktempdir (std::string prefix)
 

Function Documentation

◆ pg_mkdir_p()

int pg_mkdir_p ( char *  path,
int  omode 
)

Creates a directory and, if necessary, parent directories.

This function is adapted from pg_mkdir_p() in PostgreSQL's src/port/pgmkdirp.c.

This is equivalent to "mkdir -p" except we don't complain if the target directory already exists.

We assume the path is in canonical form, i.e., uses / as the separator.

omode is the file permissions bits for the target directory. Note that any parent directories that have to be created get permissions according to the prevailing umask, but with u+wx forced on to ensure we can create there. (We declare omode as int, not mode_t, to minimize dependencies for port.h.)

Returns 0 on success, -1 (with errno set) on failure.

Note that on failure, the path arg has been modified to show the particular directory level we had problems with.