我正在尝试在R中下载zip文件(基本上我正在自动化)。在下面的网页上,如果我点击zip文件,我可以下载zip。如果我右键单击并保存文件,我甚至可以下载。但是,我无法通过R下载它。到目前为止,我已经尝试了download.file
,RCurl
和downloader
个包。但还没有成功!
url = "https://www.nseindia.com/content/historical/DERIVATIVES/2009/JAN/fo07JAN2009bhav.csv.zip"
download.file(url, dest);
尝试访问网址 'https://www.nseindia.com/content/historical/DERIVATIVES/2009/JAN/fo07JAN2009bhav.csv.zip' download.file(url,temp)出错:无法打开URL 'https://www.nseindia.com/content/historical/DERIVATIVES/2009/JAN/fo07JAN2009bhav.csv.zip' 另外:警告信息:在download.file(url,temp):不能 打开网址 'https://www.nseindia.com/content/historical/DERIVATIVES/2009/JAN/fo07JAN2009bhav.csv.zip': HTTP状态为'403 Forbidden'
手动下载: