本文整理汇总了Python中FileUtils.getAbsolutePath方法的典型用法代码示例。如果您正苦于以下问题:Python FileUtils.getAbsolutePath方法的具体用法?Python FileUtils.getAbsolutePath怎么用?Python FileUtils.getAbsolutePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileUtils
的用法示例。
在下文中一共展示了FileUtils.getAbsolutePath方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getApkFileName
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def getApkFileName():
folderPath = FileUtils.getAbsolutePath(g_projectPath + s_binFolder)
if not os.path.exists(folderPath):
ColorPrint.errorPrint("没有找到目录" + folderPath)
return None
for _file in os.listdir(folderPath):
if -1 != _file.find("release.apk"):
return _file
return None
示例2: loadConfigData
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def loadConfigData(configPathStr):
configPath = FileUtils.getAbsolutePath(configPathStr)
if not os.path.exists(configPath):
ColorPrint.errorPrint("配置文件不存在")
return False
file_object = open(configPath)
try:
fileText = file_object.read()
finally:
file_object.close()
jsonDecode = json.loads(fileText)
return jsonDecode
示例3: getTargetFolderPath
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def getTargetFolderPath(versionName):
return FileUtils.getAbsolutePath(s_publishFolder + versionName)
示例4: fileAction
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def fileAction(apkFileName, versionName):
apkFilePath = FileUtils.getAbsolutePath(g_projectPath + s_binFolder + apkFileName)
targetFolder = getTargetFolderPath(versionName)
targetFile = os.path.join(targetFolder, apkFileName)
FileUtils.copyFile(apkFilePath, targetFolder + "/" +apkFileName)
renameFile(targetFile, versionName)
示例5: createTargetFolder
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def createTargetFolder(versionName):
path = FileUtils.getAbsolutePath(s_publishFolder + versionName)
FileUtils.createFolder(path)
示例6: main
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def main():
configData = loadConfigData(s_versionFilePath)
for jsonKey in configData:
AntVersion.changeAntFileVersion(FileUtils.getAbsolutePath(s_antPath), jsonKey, configData[jsonKey])
示例7: fixPngWarning
# 需要导入模块: import FileUtils [as 别名]
# 或者: from FileUtils import getAbsolutePath [as 别名]
def fixPngWarning():
path = FileUtils.getAbsolutePath(s_rePath)
os.chdir(path)
os.system("find . -type f -name \"*.png\" -exec convert {} -strip {} \;")