我有资产的文件夹。我需要将所有媒体复制到
数据/数据/包/
并为声音imgs,视频创建5个文件夹。我该怎么办?
答案 0 :(得分:1)
尝试以下,
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();
}
答案 1 :(得分:0)
您的应用需要以下权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />