我正在尝试在 python 中移动一些文件,但它们的名称中有空格。有没有办法专门告诉python将字符串视为文件名?
listing = os.listdir(self.Parent.userTempFolderPath)
for infile in listing:
if infile.find("Thumbs.db") == -1 and infile.find("DS") == -1:
fileMover.moveFile(infile, self.Parent.userTempFolderPath, self.Parent.currentProjectObject.Watchfolder, True)
从列表中获取文件后,我运行os.path.exists
它以查看它是否存在,但它永远不存在!有人可以在这里给我一个提示吗?