I am trying to download a particular file to a specific folder on my hardisk. I am using IronPython 2.7 and urllib module.
urllib
I tried downloading the file
You may want to use this instead:
import os import urllib fullfilename = os.path.join('C:/somedir', 'test.html') urllib.urlretrieve("http://www.google.com", fullfilename)