Different app behaviour when deployed locally and from Store
问题 I'm encountering strange issue when app is deployed from Windows Store (beta version). The app is written as Windows Phone 8.1 RunTime. I've a small windows runtime component written in C++/C# which checks for file existence: bool FileEx::FileExists(String^ path) { std::wstring pathW(path->Begin()); std::string myPath(pathW.begin(), pathW.end()); FILE *file = NULL; if (fopen_s(&file, myPath.c_str(), "r") == 0) { fclose(file); return true; } else return false; } TESTING METHOD: Now let's test