内部存储文件夹和文件

Internal storage folders and files

我有包含资产的文件夹。我需要将所有媒体复制到

data/data/packagename/

并为声音 imgs、视频创建 5 个文件夹。我该怎么做???

您的应用需要以下权限

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

尝试关注,

 File path=getFilesDir();
 String mypath=path.toString() + "/myfolder";
 OutputStreamWriter out;
 try {
        File  f = new File(mypath , "/myfile.txt"   );
        out = new OutputStreamWriter(openFileOutput(f.getPath(),MODE_PRIVATE));
        out.write("test");
        out.close();                   
     }