Adding folder in Internal Storage in public?
问题 am create the Excel file to store it in Internal storage,but am not able to do.It Create only inside the app storage directory.Not to visible in public.How to create folder and store the file in that folder?Can anyone one know help me to solve this issue. File Creation coding public String generate(String file_name,String path) { try { f = new File(activity.getFilesDir(), path); if (!f.exists()) { f.mkdirs(); } file = new File(f.getAbsolutePath(), file_name); if (file.createNewFile()) { file