10

我正在尝试创建一个目录,但似乎每次都失败?我已经检查过这也不是权限问题,我拥有写入该目录的完全权限。提前致谢。

这是代码:

private void writeTextFile(String v){
    try{

        String yearString = convertInteger(yearInt);
        String monthString = convertInteger(month);
        String fileName = refernce.getText();
        File fileDir = new File("C:\\Program Files\\Sure Important\\Report Cards\\" + yearString + "\\" + monthString);
        File filePath = new File(fileDir + "\\"+ fileName + ".txt");
        writeDir(fileDir);
        // Create file 
        FileWriter fstream = new FileWriter(filePath);
        try (BufferedWriter out = new BufferedWriter(fstream)) {
            out.write(v);
        }
    }catch (Exception e){//Catch exception if any
    System.err.println("Error: " + e.getMessage());
    }
}

private void writeDir(File f){
    try{
         if(f.mkdir()) { 
             System.out.println("Directory Created");
        } else {
        System.out.println("Directory is not created");
        }
    } catch(Exception e){
        e.printStackTrace();
    }
}

public static String convertInteger(int i) {
    return Integer.toString(i);
}

Calendar cal = new GregorianCalendar();
public int month = cal.get(Calendar.MONTH);
public int yearInt = cal.get(Calendar.YEAR);

这是输出:

Directory is not created
Error: C:\Program Files\Sure Important\Report Cards\2012\7\4532.txt (The system cannot find the path specified)
4

2 回答 2

29

这可能是因为File.mkdir仅当父目录存在时才创建目录。尝试使用File.mkdirswhich 创建所有必要的目录。

这是对我有用的代码。

private void writeDir(File f){
    try{
         if(f.mkdirs()) { 
             System.out.println("Directory Created");
        } else {
        System.out.println("Directory is not created");
        }
    } catch(Exception e){
            //  Demo purposes only.  Do NOT do this in real code.  EVER.
            //  It squashes exceptions ...
        e.printStackTrace();
    }
}

我所做的唯一更改是更改f.mkdir()f.mkdirs()并且有效

于 2012-08-26T01:30:10.043 回答
8

我认为@La bla bla已经成功了,但为了完整起见,以下是我能想到的所有可能导致调用File.mkdir()失败的事情:

  • 路径名中的语法错误;例如,文件名组件中的非法字符
  • 包含最终目录组件的目录不存在。
  • 已经有同名的东西了。
  • 您无权在父目录中创建目录
  • 您无权在路径上的某个目录中进行查找
  • 要创建的目录位于只读文件系统上。
  • 文件系统出现硬件错误或网络相关错误。

(显然,这些可能性中的一些可以在这个问题的背景下迅速消除......)

于 2012-08-26T02:01:24.567 回答