ENH: add fileName::isBackup() method

- previously part of POSIX.C
This commit is contained in:
Mark Olesen
2018-01-10 10:22:57 +01:00
parent c093095444
commit 2b0eaf2d38
7 changed files with 80 additions and 59 deletions

View File

@ -26,18 +26,22 @@ License
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
inline std::string::size_type Foam::string::find_ext() const
inline std::string::size_type Foam::string::find_ext(const std::string& str)
{
const size_type i = find_last_of("./");
const auto i = str.find_last_of("./");
if (i == npos || i == 0 || operator[](i) == '/')
if (i == npos || i == 0 || str[i] == '/')
{
return npos;
}
else
{
return i;
}
return i;
}
inline std::string::size_type Foam::string::find_ext() const
{
return find_ext(*this);
}
@ -49,17 +53,15 @@ inline bool Foam::string::hasExt() const
inline bool Foam::string::removeExt()
{
const size_type i = find_ext();
const auto i = find_ext();
if (i == npos)
{
return false;
}
else
{
this->resize(i);
return true;
}
this->resize(i);
return true;
}