| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
3 comments so far (post your own) View All Comments Latest 10 Comments:private static void dirlist(String fname, int deep) {
File dir = new File(fname);
String[] chld = dir.list();
if (dir.isFile()) {
System.out.println("" + dir.getName());
return;
} else if (dir.isDirectory()) {
System.out.println(fname.substring(fname.lastIndexOf("\\")));
for (int i = 0; i < chld.length; i++) {
dirlist(fname + "\\" + chld[i]);
}
}
}
Posted by flo on Sunday, 12.7.08 @ 07:43am | #82482
its nice Code it is helpfull for bigners
Posted by Dildar ALi on Tuesday, 01.15.08 @ 14:37pm | #45250
This one is a real beauty. So simple the code and so powerful the function. Love it. Many thanks.
Posted by Kimtran on Wednesday, 06.13.07 @ 10:29am | #19083