Use StorageManager for Exh logs

This commit is contained in:
Jobobby04
2023-12-23 23:41:24 -05:00
parent 44fb882654
commit 7e6d1196ac
2 changed files with 34 additions and 24 deletions
@@ -47,8 +47,17 @@ class StorageManager(
fun getLocalSourceDirectory(): UniFile? {
return baseDir?.createDirectory(LOCAL_SOURCE_PATH)
}
// SY -->
fun getLogsDirectory(): UniFile? {
return baseDir?.createDirectory(LOGS_PATH)
}
// SY <--
}
private const val AUTOMATIC_BACKUPS_PATH = "autobackup"
private const val DOWNLOADS_PATH = "downloads"
private const val LOCAL_SOURCE_PATH = "local"
// SY -->
private const val LOGS_PATH = "logs"
// SY <--