def addListenDir(self):
listenDirPath = filedialog.askdirectory(
parent = self,
title = "Auto convert (listen) .spe under this directory",
initialdir = self.listenDirPath.get(),
)
if not self.checkDir(listenDirPath, autocreate = False, poperror = False):
return
print("listen:", listenDirPath)
if os.path.abspath(listenDirPath) != self.listenDirPath.get():
self.listenDirPath.set(os.path.abspath(listenDirPath))
self.checkListenTask()
评论列表
文章目录