I tried
Code: Select all
sceIoOpen("flash0:/test.txt",PSP_O_TRUNC | PSP_O_CREAT | PSP_O_WRONLY, 0777);
Code: Select all
sceIoOpen("ms0:/test.txt",PSP_O_TRUNC | PSP_O_CREAT | PSP_O_WRONLY, 0777);
Code: Select all
sceIoOpen("flash0:/test.txt",PSP_O_TRUNC | PSP_O_CREAT | PSP_O_RDONLY, 0777);
This way it works... Perhaps i have to use a differente mode, instead of 0777. (Tried with 0744, but doesnt work too)