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
して存在するかどうかを確認しますが、存在することはありません。誰かが私にここでヒントを与えることができますか?