36#include "../mxlib.hpp"
59std::string
pathStem(
const std::string &fname );
71std::string
parentPath(
const std::string &fname );
77std::vector<std::string>
79 const std::string &prefix,
81 const std::string &substr,
82 const std::string &extension
91std::vector<std::string>
93 const std::string &extension
102std::vector<std::string>
110 const std::string &fname,
111 const std::string &prepend,
112 const std::string &append
120 const std::string &fname,
121 const std::string &append
129 const std::string &fname,
130 const std::string &prepend
147 const std::string &basename,
148 const std::string &extension =
"",
149 const int startat = 0,
std::string fileNamePrepend(const std::string &fname, const std::string &prepend)
Prepend strings to a file name, leaving the directory and extension unaltered.
std::string getSequentialFilename(const std::string &basename, const std::string &extension="", const int startat=0, int ndigit=4)
Get the next file in a numbered sequence.
std::string fileNamePrependAppend(const std::string &fname, const std::string &prepend, const std::string &append)
Prepend and/or append strings to a file name, leaving the directory and extension unaltered.
std::string fileNameAppend(const std::string &fname, const std::string &append)
Append a string to a file name, leaving the directory and extension unaltered.
std::vector< std::string > getFileNames(const std::string &directory, const std::string &prefix, const std::string &substr, const std::string &extension)
Get a list of file names from the specified directory, specifying a prefix, a substring to match,...
int createDirectories(const std::string &path)
Create a directory or directories.
std::string parentPath(const std::string &fname)
Get the parent path from a filename.
std::string pathStem(const std::string &fname)
Get the stem of the filename.
off_t fileSize(int fd)
Get the size in bytes of a file.
std::string pathFilename(const std::string &fname)
Get the base filename.