I'm trying to implement a set of methods that read from and write to text files in External Storage in android (18, 4.3.1). I normally use AssetManager, but that's read only.
I want to initialize these files with values, but I don't know where the External Storage directory is in the Eclipse project folder. The method I'm using to get the path is the following:
File sdCard = Environment.getExternalStorageDirectory();
File file = new File(sdCard, "passwords.txt");
...
Edit: This may have been written confusingly. I want to know where to put my text file in my eclipse project so that the Android Virtual Device loads it into External Storage, and I can find that path.