Use the file class in Java to bulk create files and bulk modify file names

Source: Internet
Author: User

Batch file creation

1         intCont = 1;2String s = "e:\\ learning material \\Java notes-";3          while(cont<100){4File f =NewFile (s+cont+ ". txt");5             if(!f.exists ()) {6 f.createnewfile ();7             }8cont++;9}

Batch Modify file name

1File File =NewFile ("e:\\ Learning materials");2String SF =File.getabsolutepath ();3File[] F=file.listfiles ();4         intCont =1;5          for(File file2:f) {6String oldname =file2.getname ();7String name = Oldname.replace ("Java note-", "" ");8String newname = sf+ "\ \" +name;9File FF =NewFile (newname);Ten             Booleanb =File2.renameto (FF); One              A             if(b) { -SYSTEM.OUT.PRINTLN ("Modified successfully" +cont+ "files"); -cont++; the             } -}

Use the file class in Java to bulk create files and bulk modify file names

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.