简体   繁体   中英

Creating a series of Folders in sdcard android

My require file in sd card has path

Android/data/mypakagename/android/myfile/abc/myfile.txt

i have a url from where i will download this myFile.txt and place it in this location. Right now I have directory Android/data/mypakagename/ created in sdCard.

Now i am using following code.

File file = new File("Android/data/mypakagename/android/myfile/abc/myfile.txt
");
file.mkdirs();

This creates all folders however it also create myfile.txt as a folder.I want to create all missing directories except last one. How can i do that?

    File file = new File("Android/data/mypakagename/android/myfile/abc/myfile.txt
");
    File parent = file.getParentFile();
    parent.mkdirs();
String filename = "myfile.txt"
File dir = new File ("Android/data/mypakagename/android/myfile/abc");  
dir.mkdirs();
File file = new File(dir, filename); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM