我想在Android中创建一个新文件:
File file = new File(getFilesDir(), "filename");
if (file.exists())
file.delete();
file.createNewFile();
但file.createNewFile()始终返回false。我做错了什么?
答案 0 :(得分:0)
我相信如果您使用Context.openFileInput(filename)
,它会为您处理文件创建。
答案 1 :(得分:0)
来自Android File doc:
根据路径在文件系统上创建一个新的空文件 存储在此文件中的信息。如果是,则此方法返回true 创建一个文件,如果该文件已经存在则为false。请注意它 即使文件不是文件也会返回false(因为它是a 目录,说)。
您需要调用 FileOutputStream Context.openFileOutput(String,int)方法。
FileOutputStream out=openFileOutput("file.txt",MODE_PRIVATE);
答案 2 :(得分:0)
如果"filename"
是非空目录,file.delete()
将不会删除您的目录,因此这是一个逻辑问题。
答案 3 :(得分:0)
public static File getOutputMediaFile(int type) {
// To be safe, you should check that the SDCard is mounted
// using Environment.getExternalStorageState() before doing this.
File mediaStorageDir = new File(
Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES),
"MyCameraApp");
// This location works best if you want the created images to be shared
// between applications and persist after your app has been uninstalled.
// Create the storage directory if it does not exist
if (!mediaStorageDir.exists()) {
if (!mediaStorageDir.mkdirs()) {
Log.d("MyCameraApp", "failed to create directory");
return null;
}
}
// Create a media file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss")
.format(new Date());
File mediaFile;
if (type == MEDIA_TYPE_IMAGE) {
mediaFile = new File(mediaStorageDir.getPath() + File.separator
+ "IMG_" + timeStamp + ".jpg");
} else if (type == MEDIA_TYPE_VIDEO) {
mediaFile = new File(mediaStorageDir.getPath() + File.separator
+ "VID_" + timeStamp + ".mp4");
} else {
return null;
}
return mediaFile;
}