I have a web application in a servlet container.

How can I get the list of files inside security folder inside controller/servlet?

I tried something like this(which is not working):

File security_image_dir = new File("/beta/images/security/");
String security_images[] = security_image_dir.list();
link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The standard way of accessing files within a web environment is ServletContext.getResourceAsStream(String). If you want to get a list of files then you can try ServletContext.getResourcePaths()

link|improve this answer
I am actually looking for list of file names in a dir. – Arjun Jun 16 '11 at 7:06
@arjun , i have updated my answer – Suraj Chandran Jun 16 '11 at 7:13
ok thank you, let me try this. – Arjun Jun 16 '11 at 7:34
feedback

Your Answer

 
or
required, but never shown

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