本文整理汇总了Python中synapseclient.File.dataFileHandleId方法的典型用法代码示例。如果您正苦于以下问题:Python File.dataFileHandleId方法的具体用法?Python File.dataFileHandleId怎么用?Python File.dataFileHandleId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类synapseclient.File
的用法示例。
在下文中一共展示了File.dataFileHandleId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _copyFile
# 需要导入模块: from synapseclient import File [as 别名]
# 或者: from synapseclient.File import dataFileHandleId [as 别名]
def _copyFile(syn, entity, destinationId, version=None, update=False, setProvenance="traceback"):
"""
Copies most recent version of a file to a specified synapse ID.
:param entity: A synapse ID of a File entity
:param destinationId: Synapse ID of a folder/project that the file wants to be copied to
:param version: Can specify version of a file.
Default to None
:param update: Can choose to update files that have the same name
Default to False
:param setProvenance: Has three values to set the provenance of the copied entity:
traceback: Sets to the source entity
existing: Sets to source entity's original provenance (if it exists)
None: No provenance is set
"""
ent = syn.get(entity, downloadFile=False, version=version, followLink=False)
#CHECK: If File is in the same parent directory (throw an error) (Can choose to update files)
if not update:
search = syn.query('select name from entity where parentId =="%s"'%destinationId)
for i in search['results']:
if i['entity.name'] == ent.name:
raise ValueError('An item named "%s" already exists in this location. File could not be copied'%ent.name)
profile = syn.getUserProfile()
# get provenance earlier to prevent errors from being called in the end
# If traceback, set activity to old entity
if setProvenance == "traceback":
act = Activity("Copied file", used=ent)
# if existing, check if provenance exists
elif setProvenance == "existing":
try:
act = syn.getProvenance(ent.id)
except SynapseHTTPError as e:
# Should catch the 404
act = None
elif setProvenance is None or setProvenance.lower() == 'none':
act = None
else:
raise ValueError('setProvenance must be one of None, existing, or traceback')
#Grab file handle createdBy annotation to see the user that created fileHandle
fileHandleList = syn.restGET('/entity/%s/version/%s/filehandles'%(ent.id,ent.versionNumber))
#NOTE: May not always be the first index (need to filter to make sure not PreviewFileHandle)
#Loop through to check which dataFileHandles match and return createdBy
# Look at convenience function
for fileHandle in fileHandleList['list']:
if fileHandle['id'] == ent.dataFileHandleId:
createdBy = fileHandle['createdBy']
break
else:
createdBy = None
#CHECK: If the user created the file, copy the file by using fileHandleId else hard copy
if profile.ownerId == createdBy:
new_ent = File(name=ent.name, parentId=destinationId)
new_ent.dataFileHandleId = ent.dataFileHandleId
else:
#CHECK: If the synapse entity is an external URL, change path and store
if ent.externalURL is None: #and ent.path == None:
#####If you have never downloaded the file before, the path is None
store = True
#This needs to be here, because if the file has never been downloaded before
#there wont be a ent.path
ent = syn.get(entity,downloadFile=store,version=version)
path = ent.path
else:
store = False
ent = syn.get(entity,downloadFile=store,version=version)
path = ent.externalURL
new_ent = File(path, name=ent.name, parentId=destinationId, synapseStore=store)
#Set annotations here
new_ent.annotations = ent.annotations
#Store provenance if act is not None
if act is not None:
new_ent = syn.store(new_ent, activity=act)
else:
new_ent = syn.store(new_ent)
#Leave this return statement for test
return new_ent['id']