mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
2e731dd4dd
* generic Device:info() function which returns the model * add Device:canSuspend() and make it true in all devices that have suspend routines and the emulator * also enable fake poweroff/reboot on the emulator * add Device.home_dir * add Device:hasExitOptions() and update menus & comments
47 lines
1.5 KiB
Lua
47 lines
1.5 KiB
Lua
--[[--
|
|
This module contains miscellaneous helper functions for FileManager
|
|
]]
|
|
|
|
local Device = require("device")
|
|
local DocSettings = require("docsettings")
|
|
local util = require("ffi/util")
|
|
local _ = require("gettext")
|
|
|
|
local filemanagerutil = {}
|
|
|
|
function filemanagerutil.getDefaultDir()
|
|
return Device.home_dir or "."
|
|
end
|
|
|
|
function filemanagerutil.abbreviate(path)
|
|
if not path then return "" end
|
|
if G_reader_settings:nilOrTrue("shorten_home_dir") then
|
|
local home_dir = G_reader_settings:readSetting("home_dir") or filemanagerutil.getDefaultDir()
|
|
if path == home_dir then
|
|
return _("Home")
|
|
end
|
|
local len = home_dir:len()
|
|
local start = path:sub(1, len)
|
|
if start == home_dir and path:sub(len+1, len+1) == "/" then
|
|
return path:sub(len+2)
|
|
end
|
|
end
|
|
return path
|
|
end
|
|
|
|
-- Purge doc settings in sidecar directory,
|
|
function filemanagerutil.purgeSettings(file)
|
|
local file_abs_path = util.realpath(file)
|
|
if file_abs_path then
|
|
os.remove(DocSettings:getSidecarFile(file_abs_path))
|
|
-- Also remove backup, otherwise it will be used if we re-open this document
|
|
-- (it also allows for the sidecar folder to be empty and removed)
|
|
os.remove(DocSettings:getSidecarFile(file_abs_path)..".old")
|
|
-- If the sidecar folder is empty, os.remove() can delete it.
|
|
-- Otherwise, the following statement has no effect.
|
|
os.remove(DocSettings:getSidecarDir(file_abs_path))
|
|
end
|
|
end
|
|
|
|
return filemanagerutil
|