0
我目前正在Python3中編寫一個小型網絡聊天。我想包括一個功能來保存用戶的歷史。現在我的用戶類包含名稱變量,並且我想將歷史文件保存在以用戶名爲名稱的文件夾中。如何在文件路徑中包含變量(Python)
因此,例如,它大概的樣子說:
import os
import os.path
class User:
name = "exampleName"
PATH = './exampleName/History.txt'
def SaveHistory(self, message):
isFileThere = os.path.exists(PATH)
print(isFileThere)
所以直到我創建了一個名爲「EXAMPLENAME」文件夾,它是alwasy返回「假」。 任何人都可以告訴我如何得到這個工作? 非常感謝!
相關http://stackoverflow.com/questions/273192/in-python-check-if-a-directory-exists-and-create-it-if-necessary –