Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

save documents on Android 11 site:stackoverflow.com

 public  static  File commonDocumentDirPath(String FolderName){
        File dir = null ;

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
            dir = new File (Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS)+ "/"+FolderName );
        } else {
            dir = new File(Environment.getExternalStorageDirectory() + "/"+FolderName);
        }

    // Make sure the path directory exists.
   if (!dir.exists()) {
          // Make it, if it doesn't exit
         boolean success=dir.mkdirs();
         if(!success) {dir=null;}


   }
            
        return  dir ;

    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #save #documents #Android
ADD COMMENT
Topic
Name
9+1 =