コード例 #1
0
ファイル: file.cpp プロジェクト: HaoDongGuo/oxygine-framework
        bool exists(const char* file_)
        {
            char file[512];
            path::normalize(file_, file);

            return _nfs.isExists(file);
        }
コード例 #2
0
ファイル: file.cpp プロジェクト: huangyt/oxygine-framework
		bool exists(const char *file)
		{
			return _nfs.isExists(file);
		}