mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
15 lines
296 B
Lua
15 lines
296 B
Lua
|
-- need low-level mechnism to detect android to avoid recursive dependency
|
||
|
local isAndroid = pcall(require, "android")
|
||
|
|
||
|
local DataStorage = {}
|
||
|
|
||
|
function DataStorage:getDataDir()
|
||
|
if isAndroid then
|
||
|
return "/sdcard/koreader/"
|
||
|
else
|
||
|
return "./"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
return DataStorage
|