我正在开发Android项目。我想在我的本地存储库中写输出。所以,我正在使用File Class.i我正在使用Windows。这是我的代码:
String fileName = "C:\\LocationAPI";
File f1 = new File(fileName);
if(f1.isDirectory()){
Log.d("write","Is a Directory")
}
else{
Log.d("write","Not a Directory");
}
结果是:不是目录。 LocationAPI目录存在于C盘内。 有人可以告诉我我犯的错误吗?