0

我想在 Android 中创建一个新文件:

File file = new File(getFilesDir(), "filename");
if (file.exists())
  file.delete();
file.createNewFile();

但是 file.createNewFile() 总是返回 false。我做错了什么?

4

4 回答 4

0

我相信如果您要使用Context.openFileInput(filename),它将为您处理文件创建。

于 2012-04-12T05:13:07.863 回答
0

从 Android文件文档

根据存储在此文件中的路径信息,在文件系统上创建一个新的空文件。如果创建文件,则此方法返回 true,如果文件已存在,则返回 false。请注意,即使文件不是文件,它也会返回 false(例如,因为它是目录)。

您需要调用FileOutputStream Context.openFileOutput(String,int)方法。

FileOutputStream out=openFileOutput("file.txt",MODE_PRIVATE);
于 2012-04-12T05:16:27.053 回答
0

如果"filename"是非空目录,file.delete()则不会为您删除目录,因此存在此逻辑问题。

于 2012-04-12T05:16:35.310 回答
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;
}
于 2012-04-12T05:29:39.777 回答