R Download.File Issue with Excel Workbook

前端 未结 1 658
一整个雨季
一整个雨季 2021-02-02 11:37

I\'m trying to download an Excel workbook using R\'s download.file function.

When I download the file manually (using Internet Explorer or Chrome, right click & save

相关标签:
1条回答
  • 2021-02-02 11:54

    You can try to download your file in binary mode (default for download.file is ASCII mode) with the mode argument. Something like :

    download.file(myurl, mydestfile, mode="wb")
    
    0 讨论(0)
提交回复
热议问题