Give you an example: the use of filefilter interfaces.

Source: Internet
Author: User
Original question:
How to check if the server c:\ have test.jpg this file (do not know the extension)



===================


First, define an instance of FileFilter


private static FileFilter filefilter=new FileFilter () {


public Boolean accept (File pathname) {


String tmp=pathname.getname (). toLowerCase ();


if (Tmp.endswith (". Jar") | | | tmp.endswith (". zip")) {


return true;


            }


return false;


        }


};


This is an example of my writing, as long as the extension is a jar or a zip to meet the criteria, you can change to Tmp.startwith ("Test.") Sort of. You can also make more judgments and use regular expressions as well.





Then:


file Root=new file ("c:\\");


file[] Files=root.listfiles (filefilter);


this time, judge the size and content of files to know if there is any file you want in the C:\ directory.





Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.