本文整理匯總了Python中Path.Path.tempStruct方法的典型用法代碼示例。如果您正苦於以下問題:Python Path.tempStruct方法的具體用法?Python Path.tempStruct怎麽用?Python Path.tempStruct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Path.Path
的用法示例。
在下文中一共展示了Path.tempStruct方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: listToFile
# 需要導入模塊: from Path import Path [as 別名]
# 或者: from Path.Path import tempStruct [as 別名]
def listToFile(self, list_ = [], name_ = ''):
fileName = ''
if name_ != '' :
fileName = Path.tempStruct(name_)
with open(fileName, 'wb') as f :
f.writelines(list_)
return fileName
示例2: createStructure
# 需要導入模塊: from Path import Path [as 別名]
# 或者: from Path.Path import tempStruct [as 別名]
def createStructure():
for nameDir in [Path.TempAvatar, \
Path.tempStruct('structure'), \
Path.tempStruct('client'), \
Path.tempStruct('server'), \
Path.config('treeBackup'), \
Path.Avatar, \
Path.Certificates] :
if not os.path.isdir(nameDir):
os.makedirs(nameDir)
cwd = os.getcwd()
while os.path.basename(cwd) not in (os.sep, '', 'LightMight') :
head, tail = os.path.split(cwd)
cwd = head
if os.path.basename(cwd) == 'LightMight' :
moveFile(os.path.join(cwd, 'contents', 'icons', 'error.png'), \
os.path.join(Path.TempAvatar, 'error'), \
False)