Hi guys, I'm pretty new to the PSP Development, and I was wondering if it's possible to copy an entire folder from one place to another programatically.
I've had a look at the other topics, but couldn't find something that suits me.
There is no function I know of that will do what you are imagining. What you want to do is google recursive folder/file copying algorithms and write your own.
basically you will need most of the sceIo functions, refer to your sdk or the doxygen to find their definitions.
Basically you will need Make Dir, Dread, Stat and you will have to write your own streamed copy function using fopen/fread/fwrite/fclose or the sceio alternatives.