Hi guys!
How to compare a folder name from a string?
Just like:
How to compare a folder name from a string?
Just like:
Code:
folderFinder = File.Find("d:\\", "*", true, true, nil, nil); for k, v in pairs (folderFinder) do string_small = String.Lower(v); if string_small ~= "gta" or string_small ~= "need for speed" then Dialog.Message("Nice", "is working and do something"); end end
Comment