- Joined
- May 8, 2011
- Messages
- 943
- Reaction score
- 2,533
- Trophies
- 3
- Age
- 29
- Location
- Doesn't concern you.
- XP
- 5,948
- Country

so I tried this code:
it doesn't work... there aren't any compiler error's but it doesn't work. Although a small side note is, the starting { in the first line has the red line under it in visual studio and says: expected an expression.Code:FS_Path testDir = (FS_Path){PATH_ASCII, 20, "sdmc:/3ds/ROT_Data/"}; FSUSER_DeleteDirectoryRecursively(ARCHIVE_SDMC, testDir);
Any ideas?
Remove the '/' at the end.
Code:
FSUSER_DeleteDirectoryRecursively(ARCHIVE_SDMC, fsMakePath(PATH_ASCII, "sdmc:/3ds/ROT_Data"));





