Get array of files in project directory

Is it possible to get an array of files in a project directory (using editor scripting or at runtime)

1 Answer

1

http://unity3d.com/support/documentation/ScriptReference/AssetDatabase.LoadAllAssetsAtPath.html

there is also this: http://answers.unity3d.com/questions/16433/get-list-of-all-files-in-a-directory.html

it looks like AssetDatabase is the goldmine! thanks!