本文整理汇总了Python中NGS_Util.moveFile方法的典型用法代码示例。如果您正苦于以下问题:Python NGS_Util.moveFile方法的具体用法?Python NGS_Util.moveFile怎么用?Python NGS_Util.moveFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NGS_Util
的用法示例。
在下文中一共展示了NGS_Util.moveFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: moveFile_createLink
# 需要导入模块: import NGS_Util [as 别名]
# 或者: from NGS_Util import moveFile [as 别名]
def moveFile_createLink(self, srcFile, dstFile):
try:
print srcFile + "....." + dstFile
if ( not os.path.islink(srcFile) ) and (os.path.isfile(srcFile)):
NGS_Util.moveFile(srcFile,dstFile)
os.symlink(dstFile,srcFile)
else:
if ( not os.path.exists(srcFile) ) and ( os.path.exists(dstFile)):
os.symlink(dstFile,srcFile)
except Exception:
print traceback.print_exc()