minor changes
This commit is contained in:
parent
f9781342ae
commit
85e618fb1b
11 changed files with 61 additions and 42 deletions
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue