1
0
镜像自地址 https://github.com/robweber/xbmcbackup.git 已同步 2025-11-08 13:08:26 +01:00
这个提交包含在:
robweber
2021-03-14 21:18:28 -05:00
父节点 8415ec12ba
当前提交 79cddb422c
修改 2 个文件,包含 3 行新增2 行删除

查看文件

@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Fixed
- error when typing the remote path, ```listBackups()``` function was not working if final slash not included in typed directory path name.
- added ```force=True``` flag to the ```rmdir()``` function. Fixes issue with directories being removed when not empty
## [Version 1.6.5](https://github.com/robweber/xbmcbackup/compare/matrix-1.6.4...robweber:matrix-1.6.5) - 2021-03-06

查看文件

@@ -73,7 +73,7 @@ class XBMCFileSystem(Vfs):
return xbmcvfs.copy(xbmcvfs.translatePath(source), xbmcvfs.translatePath(dest))
def rmdir(self, directory):
return xbmcvfs.rmdir(directory)
return xbmcvfs.rmdir(directory, force=True) # use force=True to make sure it works recursively
def rmfile(self, aFile):
return xbmcvfs.delete(aFile)