30.03.2015, 03:03
It's possible either by using FileManager or y_files plugin, according to y_files method:
Though, like others stated, I suggest converting your codes to SQL version. For converting the current data, you can use applications like INI->MySQL converter by gtakillerIV. (Link - https://sampforum.blast.hk/showthread.php?tid=510959)
pawn Код:
new i = 0, str[32], pathStr[64];
while(ffind("Users/*.ini", str, sizeof(str), i)) //Loop through every files inside "Users" folder having .ini extension.
{
format(pathStr, sizeof(pathStr), "Users/%s.ini", str); //pathStr now contains the player file path.
}