Я пытаюсь отобразить путь к файлу, вызывая getAbsolutePath (), но приложение
ничего не отображает.
Java-код:
public void createExternalStorageDirectory() {
File file = new File(getExternalFilesDir(null), fileName);
try {
InputStream is = getResources().openRawResource(R.drawable.ic_launcher);
OutputStream os = new FileOutputStream(file);
byte[] data = new byte[is.available()];
is.read(data);
os.write(data);
Toast.makeText(getBaseContext(), file.getAbsolutePath(), Toast.LENGTH_SHORT).show();
is.close();
os.close();
} catch (IOException e) {
Log.w("ExternalStorage", " Error writing " + file, e);
}
}