Hi, I am uploading to a project that has an extra step requiring a password. I am prompted for a password each time I upload a file using syn.store. This would cause me to enter hundreds of passwords. Is their a way to upload multiple files with a single syn.store step? ``` raw_data_file = File(path='test.txt', parent=results_folder) raw_data_file = syn.store(raw_data_file) ``` Best, Jennifer

Created by Jennifer Shelton JenniferShelton
Thanks so much for your help the config file worked for this job. Best -Jennifer
Hi @JenniferShelton, @larssono 's answer above is correct if you are uploading to a folder using an exernal storage location. If you are inquiring about your Synapse login credentials, then there are two ways. 1. Similar to the method mentioned above, you can store your Synapse credentials in the `.synapseConfig` file as well. See [here](http://docs.synapse.org/articles/getting_started.html#using-a-config-file) for information on using a configuration file. 1. When you log into Synapse (using `synapseclient.login`, for example) you can specify a parameter `rememberMe=True`. See [here](http://docs.synapse.org/articles/getting_started.html#logging-into-synapse) for an example of that. Let us know if you still have any questions. Thanks!
Hi Jenniferr: You can add your credentials to a config file. Specifically you want to modify the **.synapseConfig** file in your home directory (e.g. ~/.synapseConfig) and add a section with the credentials for the specific server. For example assuming your username is USERNAME and your password is PASSWORD on the sftp server at sftp.URL.gov you would add the following lines to your config file: ``` [sftp://sftp.URL.gov] username =USERNAME password =PASSWORD ```

Uploading multiple files with the synapse client page is loading…