Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to scan a folder in Java?

I want to scan a given folder for all of the files within the folder and add the locations/paths (ex: "c:/users/peter/desktop/image.jpg") to an arraylist of strings. How could i do this? Thanks for the help

share|improve this question

marked as duplicate by Lipis, Eric, Anoop Vaidya, Mario, Linger Dec 26 '12 at 19:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 3 down vote accepted

Peek around in the java.io.File API. There are at least three methods which may be of use:

share|improve this answer

Check out File.list()

share|improve this answer

You could try

File directory = new File("<Path to directory>");

String [] directoryContents = directory.list();

List<String> fileLocations = new ArrayList<String>();

for(String fileName: directoryContents) {
    File temp = new File(String.valueOf(directory),fileName);
    fileLocations.add(String.valueOf(temp));
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.