File文件操作
package fileitem;import java.io.File;/** * 文件操作 * @author DuDu * */public class FileMake {public static void main(String[] args) {String path = "D:\\逗你玩\\真的只是逗你玩";//createFile(path);//delFile(path);}//创建夹public static void createFile(String path){File file = new File(path);if(!file.exists()){file.mkdirs();} }//删除文件夹public static void delFile(String path){File file = new File(path);if(file.exists()){file.delete();}}}