Is there a function in java there can return all the name of file with
the same extension.
For example, i want to know all the files in "C:\testing" with the
extension ".txt"
any sugestion?
Andrew Thompson - 02 Dec 2006 07:21 GMT
> Is there a function in java there can return all the name of file with
> the same extension.
...
> any sugestion?
java.io.File.list(java.io.FilenameFilter)
Andrew T.