标签:
package filestream; import java.io.File; public class FileTester { public static void main(String [] args) { String path = "E:\\java\\dirtest"; File dir = new File (path); dir.mkdir(); dir.delete(); } }
标签:
原文地址:http://www.cnblogs.com/ghmgm/p/4355212.html