As you know,I want to save a text file into flash disk connected by otg line.On Adnroid4.4(API19),does it can create directory?I know how to save a file,but it have to click save button.I have a list of files have to save and save into different folders.So can android4.4 can realize this?I do not want to click the save button always.Can i save the file into flash disk directly by uri?
Asked
Active
Viewed 352 times
0
-
2`As you know,I want to save a text file into flash disk connected by otg line`. Sorry. I think i missed something ;-). If you can use the action intent ACTION_OPEN_DOCUMENT_TREE then you can create directories too. – greenapps Nov 17 '16 at 05:47
1 Answers
0
If you can pick directories with action intent ACTION_OPEN_DOCUMENT_TREE
then you can create directories too.
If you can only pick files (ACTION_OPEN_DOCUMENT
) then not.

greenapps
- 11,154
- 2
- 16
- 19
-
-
-
If i have 10 files to save,i have use this code to save one by one? If more files,it will be to tired.- -! – zhang Nov 17 '16 at 06:02
-
For every file the user has to act. Indeed the user will become tired. – greenapps Nov 17 '16 at 06:03
-
-