Get the current search path.
Null-terminated array of null-terminated strings. NULL if there was a problem (read: OUT OF MEMORY).
The returned value is an array of strings, with a NULL entry to signify the end of the list:
char **i; for (i = PHYSFS_getSearchPath(); *i != NULL; i++) printf("[%s] is in the search path.\n", *i);
When you are done with the returned information, you may dispose of the resources by calling PHYSFS_freeList with the returned pointer.
Please note that Tao.PhysFs calls PHYSFS_freeList for you.
Fs Class | Tao.PhysFs Namespace | PHYSFS_addToSearchPath | PHYSFS_removeFromSearchPath