- public void newFolder(String folderPath)
- {
- String filePath = folderPath;
- filePath = filePath.toString();
- java.io.File myFilePath = new java.io.File(filePath);
- try
- {
- if(myFilePath.isDirectory())
- {
- System.out.println("the directory is exists!");
- }
- else
- {
- myFilePath.mkdir();
- System.out.println("新建目录成功");
- }
- }
- catch (Exception e)
- {
- System.out.println("新建目录操作出错");
- e.printStackTrace();
- }
- }
java 建立文件夹
精选 转载上一篇:hashmap 遍历 取值
下一篇:HTML中ul等标签的用法
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
python mac 新建文件夹下 python os 创建文件夹
使用os模块。检查路径下的文件夹列表import osdirlist = os.listdir('./') 创建文件夹:os.mkdir() #单级目录os.makedirs() #创建多级目录
python mac 新建文件夹下 os模块 创建文件夹 多级目录