08.10.2011, 13:36
Hello i am transfering my player files which are DINI to MYSQL DB and i was wondering if there is a way to loop through 20,000+ files without actually knowing the file names because every file is named differently.
For example:
For example:
Код:
new file[60]; for(new i=0; i<20000; i++) { format(file,sizeof(file),"( i can't tell you what this part is because all 20,000+ files are named differently ).ini"); if(!fexist(file)){ continue; } else { //Transfer everythying to MYSQL } }