fixed bug that hasposter is only true if poster really exists

This commit is contained in:
louis
2014-10-26 08:47:24 +01:00
parent 2129df34cb
commit e84c60f48a
5 changed files with 9 additions and 2 deletions

View File

@@ -90,6 +90,11 @@ bool isNumber(const string& s) {
return !s.empty() && it == s.end();
}
bool FileExists(const string &fullpath) {
struct stat buffer;
return (stat (fullpath.c_str(), &buffer) == 0);
}
bool FileExists(const string &path, const string &name, const string &ext) {
stringstream fileName;
fileName << path << name << "." << ext;

View File

@@ -12,6 +12,7 @@ int Minimum(int a, int b, int c, int d, int e, int f);
std::string CutText(string &text, int width, string fontName, int fontSize);
std::string StrToLowerCase(string str);
bool isNumber(const string& s);
bool FileExists(const string &fullpath);
bool FileExists(const string &path, const string &name, const string &ext);
bool FolderExists(const string &path);
bool FirstFileInFolder(string &path, string &extension, string &fileName);