Will using the list() method in the File class give issues if its a directory with thousands of files in it? Could this cause the array returned to use too much memory?
What alternative is there?
|
|
Unlikely. You should be just fine using As for alternatives, there aren't any "better ways" to do it in Java and as I already said, you probably won't need them. |
|||
|
|
|
Unlikely (this would amount to allocating a few megabytes, top). Try it first, search for workarounds only if it is a real issue :) |
|||
|
|
|
I may be wrong about this, but surely there is no possible way to economise the amount of data returned. The returned array will always use the the amount of bytes needed to store the same number of strings as there are files in the directory. The only ways I can see to reduce memory usage are to use some complex string compression technique or just organise your files into folders and then use the list method on only the ones you need to. Hope that helps. |
|||
|