Concept forward multiple

This commit is contained in:
M66B
2021-03-20 17:10:15 +01:00
parent 8f75ed1020
commit f37fe854c4
4 changed files with 149 additions and 0 deletions

View File

@@ -441,6 +441,10 @@ public class EntityMessage implements Serializable {
}
File getRawFile(Context context) {
return getRawFile(context, id);
}
static File getRawFile(Context context, Long id) {
File dir = new File(context.getFilesDir(), "raw");
if (!dir.exists())
dir.mkdir();