Quote:
Originally Posted by zokemon
Folders don't end in .ini so why would they show up?
|
DAMNIT, people need to learn how to read. -_-
PHP Code:
temp.foo.loadFolder("levels/*.nw", 0);
Will load all .nw files from levels folder.
PHP Code:
temp.foo.loadFolder("levels/*/*.nw", 1);
Will load all .nw files from levels folder, and direct subfolders (not indirect ones though).
PHP Code:
temp.foo.loadFolder("levels/*", 0);
Will load
all files from levels folder.
PHP Code:
temp.foo.loadFolder("levels/*", 1);
Will load
all files from levels folder and
all subfolders.