Hi Nizar,Thanks, i really appreciate that because the forum are a bit unstable, i was posting and was logged out so this is the second time i am writing this.Regarding the folders issue i was not clear. Some of the demos require access to the data folder, but the path is not correct so it produces an error, so we have two options: move the "data folder" into the Debug/Release folder or change the code to "../data". The first exception is expected but the second is not. And this is consistent in almost all demos. You have to move the data and shader (if exist) folders into the same directory as the binary or change the code to "../" so i guess this is a path error in the code?!if you change the demos to:Managed<OutputStream> output = filesystem->createOutputStream("../data/write.txt");Managed<InputStream> input = filesystem->createInputStream("../data/read.txt"); you get the correct output:Looking forward to having the new Emulator. You guys are moving fast. The only thing that is missing is a hardware development board or a retail product that features the Mali-200 core.
Managed<OutputStream> output = filesystem->createOutputStream("../data/write.txt");Managed<InputStream> input = filesystem->createInputStream("../data/read.txt");