package fileInputStream;
import java.io.File;
public class Test4 {
/**
* @param args
*
* 实现创建文件路径
*
*/
public static void newPath(String url) {
// 创建指定路径的文件对象
File filePath = new File(url);
if (!filePath.exists()) {
// 创建出文件对象所对应的路径
filePath.mkdirs();
} else {
System.out.println("文件路径已存在");
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
// 定义要操作的文件路径
String url = "F:\\test\\aa\\bb\\c";
// 调用创建文件路径的操作函数
newPath(url);
}
}
java实现文件路径的创建
最新推荐文章于 2024-07-26 02:50:58 发布