Merge pull request #527 from developer-wlj/wlj0909

This commit is contained in:
jxxghp 2023-09-09 18:31:27 +08:00 committed by GitHub
commit ccc249f29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,6 +122,13 @@ class DirMonitor(_PluginBase):
continue
# 存储目的目录
if SystemUtils.is_windows():
if mon_path.count(":") > 1:
paths = [mon_path.split(":")[0] + ":" + mon_path.split(":")[1],
mon_path.split(":")[2] + ":" + mon_path.split(":")[3]]
else:
paths = [mon_path]
else:
paths = mon_path.split(":")
target_path = None
if len(paths) > 1: