3
考慮的button1_Click下面的代碼IO.File.Exists()始終返回false
Dim stFile as String = IO.Path.Combine(Server.MapPath("~/"), "uploads/text/file1.txt")
If IO.File.Exists(stFile) Then
' Do some processing
End If
已存在總是在上面的代碼塊
返回false這裏是Button2_Click代碼塊
Dim stFile as String = IO.Path.Combine(Server.MapPath("~/"), "uploads/text/file1.txt")
Response.Clear()
Response.ContentType = "text/plain"
Response.AppendHeader("content-disposition", "attachment;filename=abc.txt")
Response.TransmitFile(stFile)
Response.Flush()
End If
這總是下載相同的文件。可能是什麼問題呢?
「stFile」的值是什麼,使用調試er –
如果uploads文件夾位於您項目的根目錄中,那麼只需使用以下命令:Dim stFile as String = Server.MapPath(「〜/ uploads/text/file1.txt」)' –