43#include <boost/filesystem.hpp>
45using namespace boost::filesystem;
55 boost::system::error_code ec;
56 boost::filesystem::create_directories( path, ec );
57 if( ec.value() != boost::system::errc::success && ec.value() != boost::system::errc::file_exists )
65std::string
pathStem(
const std::string &fname )
67 boost::filesystem::path p( fname );
68 return p.stem().string();
73 boost::filesystem::path p( fname );
74 return p.filename().string();
79 boost::filesystem::path p( fname );
80 return p.parent_path().string();
83std::vector<std::string> getFileNamesOld(
const std::string &directory,
84 const std::string &prefix,
85 const std::string &substr,
86 const std::string &extension )
88 typedef std::vector<path> vec;
90 std::vector<std::string> vect;
91 if( exists( directory ) )
93 if( is_directory( directory ) )
97 copy( directory_iterator( directory ), directory_iterator(), back_inserter( v ) );
99 std::sort( v.begin(), v.end() );
103 auto it_end = v.end();
105 while( it != it_end )
109 if( extension !=
"" )
111 if( it->extension() != extension )
117 if( prefix !=
"" && inc )
119 std::string p = it->filename().generic_string();
121 if( p.size() < prefix.size() )
127 if( p.compare( 0, prefix.size(), prefix ) != 0 )
134 if( substr !=
"" && inc )
136 std::string p = it->filename().generic_string();
137 if( p.find( substr ) == std::string::npos )
145 vect.push_back( it->native() );
153 std::cerr << directory <<
" is not a directory\n";
158 std::cerr <<
"directory " << directory <<
" does not exist\n";
165 const std::string &prefix,
166 const std::string &substr,
167 const std::string &extension )
171 std::vector<std::string> vect;
172 if( exists( directory ) )
174 if( is_directory( directory ) )
176 directory_iterator it{ directory };
177 auto it_end = directory_iterator{};
178 for( it; it != it_end; ++it )
180 if( extension !=
"" )
182 if( it->path().extension() != extension )
188 std::string p = it->path().filename().generic_string();
192 if( p.size() < prefix.size() )
198 if( p.compare( 0, prefix.size(), prefix ) != 0 )
207 if( p.find( substr ) == std::string::npos )
214 vect.push_back( it->path().native() );
217 sort( vect.begin(), vect.end() );
221 std::cerr << directory <<
" is not a directory\n";
226 std::cerr <<
"directory " << directory <<
" does not exist\n";
232std::vector<std::string>
getFileNames(
const std::string &directory,
const std::string &extension )
244 std::string dir, base, ext;
247 dir = p.parent_path().string();
248 base = p.stem().string();
249 ext = p.extension().string();
251 return dir +
'/' + prepend + base + append + ext;
265getSequentialFilename(
const std::string &basename,
const std::string &extension,
const int startat,
const int ndigit )
269 int maxdig = pow( 10, ndigit );
272 snprintf( formstr,
sizeof( formstr ),
"%%0%dd", ndigit );
277 std::stringstream outn;
279 snprintf( digstr,
sizeof( digstr ), formstr, i );
285 while( boost::filesystem::exists( outn.str() ) && i < maxdig )
290 snprintf( digstr,
sizeof( digstr ), formstr, i );
310 if( ( fstat( fd, &stbuf ) != 0 ) || ( !S_ISREG( stbuf.st_mode ) ) )
315 return stbuf.st_size;
Declarations of utilities for working with files.
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.