Hi all,
I am trying to download syn4549867 using:
```
import synapseclient
import synapseutils
syn = synapseclient.Synapse()
syn.login('synapse_username','password')
files = synapseutils.syncFromSynapse(syn, 'syn4549867')
```
However the files are too large for my cache quota limit (I've already emptied my cache). Is there a way to directly download them into a directory?
Thanks!
Created by Laura Sloofman lauragails Just add the path where you want to store your files to the last line:
```
files = synapseutils.syncFromSynapse(syn, 'syn4549867', path = '/download/location/path/')
```