Have a look in:
"\app\helpers\FileFolderHelper.class.php"
Find:
self::loadAllActiveByAccount($accountId, 1000);
(try 500 instead of 1000 if you can't find it)
Increase the number like this:
self::loadAllActiveByAccount($accountId, 5000);
The limit is there for performance reasons. You may have issues rendering the select drop-down with very long lists. I'll add something the dev list to review a more scalable way of showing this.