• 创建文件/文件夹


    package com.fzl.util;
    
    import java.io.File;
    import java.io.IOException;
    
    public class CreateFileUtil {
    
         public static boolean createFile(String destFileName) {  
                File file = new File(destFileName);  
                if(file.exists()) {  
                    System.out.println("创建单个文件" + destFileName + "失败,目标文件已存在!");  
                    return false;  
                }  
                if (destFileName.endsWith(File.separator)) {  
                    System.out.println("创建单个文件" + destFileName + "失败,目标文件不能为目录!");  
                    return false;  
                }  
                //判断目标文件所在的目录是否存在  
                if(!file.getParentFile().exists()) {  
                    //如果目标文件所在的目录不存在,则创建父目录  
                    System.out.println("目标文件所在目录不存在,准备创建它!");  
                    if(!file.getParentFile().mkdirs()) {  
                        System.out.println("创建目标文件所在目录失败!");  
                        return false;  
                    }  
                }  
                //创建目标文件  
                try {  
                    if (file.createNewFile()) {  
                        System.out.println("创建单个文件" + destFileName + "成功!");  
                        return true;  
                    } else {  
                        System.out.println("创建单个文件" + destFileName + "失败!");  
                        return false;  
                    }  
                } catch (IOException e) {  
                    e.printStackTrace();  
                    System.out.println("创建单个文件" + destFileName + "失败!" + e.getMessage());  
                    return false;  
                }  
            }  
             
             
            public static boolean createDir(String destDirName) {  
                File dir = new File(destDirName);  
                if (dir.exists()) {  
                    System.out.println("创建目录" + destDirName + "失败,目标目录已经存在");  
                    return false;  
                }  
                if (!destDirName.endsWith(File.separator)) {  
                    destDirName = destDirName + File.separator;  
                    System.out.println(destDirName);
                }  
                //创建目录  
                if (dir.mkdirs()) {  
                    System.out.println("创建目录" + destDirName + "成功!");  
                    return true;  
                } else {  
                    System.out.println("创建目录" + destDirName + "失败!");  
                    return false;  
                }  
            }  
             
             
            public static String createTempFile(String prefix, String suffix, String dirName) {  
                File tempFile = null;  
                if (dirName == null) {  
                    try{  
                        //在默认文件夹下创建临时文件  
                        tempFile = File.createTempFile(prefix, suffix);  
                        //返回临时文件的路径  
                        return tempFile.getCanonicalPath();  
                    } catch (IOException e) {  
                        e.printStackTrace();  
                        System.out.println("创建临时文件失败!" + e.getMessage());  
                        return null;  
                    }  
                } else {  
                    File dir = new File(dirName);  
                    //如果临时文件所在目录不存在,首先创建  
                    if (!dir.exists()) {  
                        if (!CreateFileUtil.createDir(dirName)) {  
                            System.out.println("创建临时文件失败,不能创建临时文件所在的目录!");  
                            return null;  
                        }  
                    }  
                    try {  
                        //在指定目录下创建临时文件  
                        tempFile = File.createTempFile(prefix, suffix, dir);  
                        return tempFile.getCanonicalPath();  
                    } catch (IOException e) {  
                        e.printStackTrace();  
                        System.out.println("创建临时文件失败!" + e.getMessage());  
                        return null;  
                    }  
                }  
            }  
             
    //        public static void main(String[] args) {  
    //            //创建目录  
    //            String dirName = "D:/work/temp/temp0/temp1";  
    //            CreateFileUtil.createDir(dirName);  
    //            //创建文件  
    //            String fileName = dirName + "/temp2/tempFile.txt";  
    //            CreateFileUtil.createFile(fileName);  
    //            //创建临时文件  
    //            String prefix = "temp";  
    //            String suffix = ".txt";  
    //            for (int i = 0; i < 10; i++) {  
    //                System.out.println("创建了临时文件:"  
    //                        + CreateFileUtil.createTempFile(prefix, suffix, dirName));  
    //            }  
    //            //在默认目录下创建临时文件  
    //            for (int i = 0; i < 10; i++) {  
    //                System.out.println("在默认目录下创建了临时文件:"  
    //                        + CreateFileUtil.createTempFile(prefix, suffix, null));  
    //            }  
    //        }  
    }
  • 相关阅读:
    Java SE 第十一讲(面向对象之封装)续二
    Java SE 第二十六讲 包与导入语句剖析
    Java SE 第三十一,二,三 Java数组剖析,Java数组内存地址解析
    Java SE 第三十四,五,六讲 Array类解析及数组疑难剖析,冒泡排序,交换排序以及快速排序
    Java SE 第三十八,九,四十,四十一,四十二,三四IDE详细介绍,ArrayList源代码深入剖析,L
    java高效的获取指定的精度的double数
    C++ 字符常量
    C++ endl
    C++基本数据类型
    vs2005的treeview简单使用之无限级别菜单建立
  • 原文地址:https://www.cnblogs.com/gwq369/p/5373542.html
Copyright © 2020-2023  润新知