在内部内存根目录中创建文件夹

时间:2015-05-05 16:33:26

标签: android

我想在内部存储根目录中创建一个文件夹但不是IN数据/数据。 在我最喜欢的路径中,除了数据/数据,用户可以在文件管理器中看到它。我该怎么办?

我尝试了很多这样的事情:

String path = "my folder"+File.separator+"gallery";
    File directory = new File(path);

1 个答案:

答案 0 :(得分:0)

File mydir = context.getDir("mydir", Context.MODE_PRIVATE); //Creating an internal dir;
File fileWithinMyDir = new File(mydir, "myfile"); //Getting a file within the dir.

FileOutputStream out = new FileOutputStream(fileWithinMyDir); //Use the stream as usual to write into the file

尝试使用上面的代码