A thought I had...
Posted: Sat Dec 27, 2008 8:16 am
This is a little thing I thought of that *might* help...
Hope this helps
P.S. i am a noob, so tell me if it has errors
Code: Select all
struct file{
int exists;//boolean
int isUsed;//To prevent deletion of critical parts and to avoid conflict
int name;
int location;//name is probably unnecessary with location...
};
struct folder{
contents[];//not so sure of using an array for this
int name;
int exists;
int isUsed;
int location;//If it is a sub folder
int isSubFolder;//Boolean
};
P.S. i am a noob, so tell me if it has errors