Is there a way to download all files from a ftp link, preferably not overwriting if same file already exists in download folder? I can download specific links like this:
import urllib
urllib.urlretrieve('ftp://server/path/to/file', 'file')
Is there a way to download all files from a ftp link, preferably not overwriting if same file already exists in download folder? I can download specific links like this:
import urllib
urllib.urlretrieve('ftp://server/path/to/file', 'file')