Esempio n. 1
0
bool CAPKDirectory::Exists(const char* strPath)
{
  // uses a <fully qualified path>/filename.apk/...
  CAPKFile apk;
  CURL url(strPath);
  return apk.Exists(url);
}
Esempio n. 2
0
bool CAPKDirectory::Exists(const CURL& url)
{
    // uses a <fully qualified path>/filename.apk/...
    CAPKFile apk;
    return apk.Exists(url);
}