标签: c++ file-io
我使用以下行下载文件,当我这样做时,它没有下载最新文件。
HRESULT hr = URLDownloadToFile(NULL, _T("http://example.com/users.txt"), _T("users.txt"), 0, NULL);
在第一次运行时,users.txt中有3个名称,如果要删除名称,再次运行它仍会下载3个名称。
我在下载之前使用remove("users.txt);删除文件。
remove("users.txt);