I have nothing to do with if server interprets wild card as FilenameFilter or not but what my ultimate aim is to select only those files that actually start with "ABC".
So as per your reply, writing ABC* should work. I ll check it.
Is there any way by which i can limit maximum no of files in listing or Or if suppose i want to list only those files that actually have less than a specific size then what should be done.?
Actually FilenameFilter does both the things. Implementing this interface will allow filter based on naming pattern as well as #of files. So i was looking for such an option.
Thanks Anyway.