S
spike78
Neues Mitglied
- 0
Hi zusammen,
ich würde gerne eine Datei die ich zurzeit durch meineApp auf der SD Karte speichere anschließend in mein Asset Ordner kopieren, bzw. kann ich die Datei auch direkt im Asset Verzeichnis erstellen?
Meine Datei auf der SD Karte erstelle ich derzeit so:
Grüße
Spike
ich würde gerne eine Datei die ich zurzeit durch meineApp auf der SD Karte speichere anschließend in mein Asset Ordner kopieren, bzw. kann ich die Datei auch direkt im Asset Verzeichnis erstellen?
Meine Datei auf der SD Karte erstelle ich derzeit so:
Code:
[SIZE=2][LEFT][/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]private[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] File getTempFile(Context context){
[/SIZE][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f]//it will return /[U]sdcard[/U]/image.tmp[/LEFT]
[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][LEFT][/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]final[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] File path = [/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]new[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] File( Environment.[I]getExternalStorageDirectory[/I](), context.getPackageName() );
[/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]if[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2](!path.exists()){
path.mkdir();
}
[/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]return[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]new[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] File(path, [/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]mRep[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2].getBeschreibung() +[/SIZE][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]".png"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]); [/LEFT]
}
[/SIZE]
Grüße
Spike