I want to create a file in external storage but I can't. There is no error, but there is no creation. I got the permission in manifest before.
I am following the simple code below:
package com.example.nima.readwritefiles;
public class ExternalActivity extends AppCompatActivity {
File extDir;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
extDir = Environment.getExternalStorageDirectory();
File file = new File(extDir , "mydir");
if (!file.exists())
file.mkdirs();
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…