I currently have the following code in my program:
Code: Select all
sceIoUnassign("flash1:");
sceIoAssign("flash1:", "msstor0p1:", "fatms0:", IOASSIGN_RDWR, NULL, 0);
sceIoUnassign("flash0:");
sceIoAssign("flash0:", "msstor0p1:", "fatms0:", 0x01, NULL, 0);
sceIoAssign will only assign to block devices (so I've been told), and I want to mount a directory as the flash.
I've seen in some source code around the internet (never found out if any worked) similar code which mounts to a folder like this:
Code: Select all
sceIoAssign("flash0:", "msstor0p1:/" , "fatms0:/Flash0/", IOASSIGN_RDWR, NULL, 0);
It doesn't work at all.
Can anyone help me?