コード例 #1
0
ファイル: APKDirectory.cpp プロジェクト: ckarrie/xbmc
bool CAPKDirectory::Exists(const char* strPath)
{
  // uses a <fully qualified path>/filename.apk/...
  CAPKFile apk;
  CURL url(strPath);
  return apk.Exists(url);
}
コード例 #2
0
ファイル: APKDirectory.cpp プロジェクト: Hooksdena36/xbmc
bool CAPKDirectory::Exists(const CURL& url)
{
    // uses a <fully qualified path>/filename.apk/...
    CAPKFile apk;
    return apk.Exists(url);
}