minor changes

This commit is contained in:
jeefo 2015-07-11 19:54:46 +03:00
commit 85e618fb1b
11 changed files with 61 additions and 42 deletions

View file

@ -3905,6 +3905,19 @@ public:
{
return m_handle != NULL;
}
public:
static inline bool Accessible (const String &filename)
{
File fp;
if (fp.Open (filename, "rb"))
{
fp.Close ();
return true;
}
return false;
}
};
//