Is it possible for android application to create several directories in internal storage for storing there different kinds of files? I need this capability, because I’ll need to delete a kind of files at definite time moment in my application.
When I try to use standard Context method openFileOutput() and send to it filename with “/” symbol I get IllegalArgumentException.
Tell me please what classes and methods could allow me such functionality?
Use Context.getDir(String name, int mode) method to create or access directories in internal storage. Quote from docs:
UPD Example: