当我在网络浏览器中粘贴此网址时,我需要从类似于http://server.com/settings/files/1
的网址下载文件,这可以确定在这种情况下要下载的文件的名称scheme_563.txt
,我的问题是如何使用wininet函数检索文件的名称(显然不包含在url中)?目前我使用的HttpQueryInfo
函数具有多个值,如HTTP_QUERY_CONTENT_LOCATION,HTTP_QUERY_CONTENT_DESCRIPTION等,但没有运气。
答案 0 :(得分:6)
根据http://en.wikipedia.org/wiki/List_of_HTTP_header_fields,Content-Disposition header包含此信息
Content-Disposition: attachment; filename=fname.ext
在这种情况下,可能会在HTTP GET或HEAD请求的响应中使用此可选标头。
请注意,文件名可能会被编码 - 请参阅How to encode the filename parameter of Content-Disposition header in HTTP?进行讨论