Top "Android-file" questions

Specifically the Android `File` class, but may also refer to the generic concept of files under the Android operating system

Where are Android Emulator Image Stored?

On the emulator, I downloaded an image from Google. I can find the image on the emulator, but I have …

android android-emulator android-file
How to get the internal and external sdcard path in android

Most of the new android devices have an internal sdcard and an external sdcard. I want to make a file …

android file android-sdcard android-file
Save Bitmap in Android as JPEG in External Storage in a folder

I am using this code to save Bitmap in External Storage but it does not create the folder if it …

android save android-file
java.io.filenotfoundexception open failed eacces (permission denied) on device

The following code which consists of downloading a file from a server and save it in the storage works fine …

android android-permissions android-file
Android, how do can I get a list of all files in a folder?

I need the name (String) of all files in res/raw/ I tried: File f = new File("/"); String[] someFiles = f.…

android android-file
File.createTempFile() VS new File()

In my app I added the possibility to add and save pictures for everyday day, represented by a Fragment. In …

android android-file
Create and Share a File from Internal Storage

My goal is to create a XML file on internal storage and then send it through the share Intent. I'm …

android android-contentprovider android-file
Android: mkdirs()/mkdir() on external storage returns false

I'm driven crazy with this: Log.d("STATE", Environment.getExternalStorageState()); File f = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM), "work_…

android android-file android-external-storage