Browse Source

getData to handle potential subdirectory at remote location

Andrej Studen@Labkey-KNM 1 year ago
parent
commit
b83c9bf7f6
1 changed files with 5 additions and 2 deletions
  1. 5 2
      pythonScripts/getData.py

+ 5 - 2
pythonScripts/getData.py

@@ -139,7 +139,9 @@ def copyFromServer(fb,r,setup,names):
       localDir=os.path.join(tempDir,code)
       if not os.path.isdir(localDir):
          os.makedirs(localDir)
-      localPath=os.path.join(localDir,n)
+      #n may contain slash, and localPath should be without it
+      fName=n[n.rfind('/')+1:]
+      localPath=os.path.join(localDir,fName)
       if os.path.isfile(localPath) and not forceReload:
          continue
       remotePath='{}/{}'.format(remoteDir,n)
@@ -148,7 +150,8 @@ def copyFromServer(fb,r,setup,names):
 def getLocalPath(r,setup,name):
    tempDir=config.getTempDir(setup)
    code=config.getCode(r,setup)
-   return os.path.join(tempDir,code,name)
+   fileName=name[name.rfind('/')+1:]
+   return os.path.join(tempDir,code,fileName)
 
 def getURL(fb,r,setup,name):
    remoteDir=fb.buildPathURL(setup['project'],config.getPathList(r,setup))