1
我自動生成文件名,我不希望有覆蓋。我懶洋洋地使用的代碼python的tempfile.mkstemp是否總是產生一個唯一的名字?
fd, filepath = tempfile.mkstemp(ext, prefix='odt_img_', dir=self.destPath)
os.close(fd) # just using the name and overwriting later
這個小行後來我寫的文件路徑,但我不知道,如果mkstemp只是增加了一些隨機的字母或者如果它實際上可以確保名稱是唯一的。