Newer
Older
* Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
*
*/
#ifndef FILETOOLS_H
#define FILETOOLS_H
#include <string>
#include <fstream>
{
/**
* \brief Returns true if given file exists. From http://www.techbytes.ca/techbyte103.html
*
* \param strFilename the file name
bool IsFileExisting(const std::string &strFilename);
/**
* \brief write value as binary into the given output stream
*
* \param T data type of the value
* \param out output stream, have to be opened in binary mode
template <typename T> void writeValueBinary(std::ostream &out, T const& val)
}
/**
* \brief truncate a file
void truncateFile( std::string const& file_path);
/**
* Extracts basename from given pathname with extension.
*/
std::string extractBaseName(std::string const& pathname);
/**
* Extracts basename from given pathname without its extension.
*/
std::string extractBaseNameWithoutExtension(std::string const& pathname);
* Extract extension from filename
std::string getFileExtension(std::string const& filename);
/**
* Compares filename's extension with query extension. The comparison is case
* insensitive done by converting to upper case with the std::toupper()
* function.
*/
bool hasFileExtension(std::string const& extension, std::string const& filename);
/**
* Checks if file_name already contains a qualified path and if not copies the path from source.
*/
std::string copyPathToFileName(const std::string &file_name, const std::string &source);
/**
std::string extractPath(std::string const& pathname);
#endif // FILETOOLS_H