Remove empty sidecar folder

This commit is contained in:
Zijie He
2017-02-08 12:41:22 -08:00
committed by Frans de Jonge
parent 6b5b426639
commit faaca028e7

View File

@@ -165,6 +165,10 @@ function FileManager:init()
callback = function()
local full_path = util.realpath(file)
os.remove(DocSettings:getSidecarFile(full_path))
-- If the sidecar folder is empty, os.remove() can
-- delete it. Otherwise, the following statement has no
-- effect.
os.remove(DocSettings:getSidecarDir(full_path))
self:refreshPath()
-- also remove from history if present
local readhistory = require("readhistory")