I have tried this code:
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
struct stat st = {0};
if (stat("/3ds/Test/", &st) == -1) {
mkdir("/3ds/Test/", 0700);
}
It creates the directory but the app crashes instantly when I open it, I don't get any errors at compilation(It...