方法一:
//这个值可以从配置文件读取,或者放个textbox让用户填
string path = "你的路径";
FileStream outputStream = new FileStream(path , FileMode.Create);
方法二:
直接用Response内置对象把文件以流的形式传到前端,浏览器自动就会识别下载了
方法一:
//这个值可以从配置文件读取,或者放个textbox让用户填
string path = "你的路径";
FileStream outputStream = new FileStream(path , FileMode.Create);
方法二:
直接用Response内置对象把文件以流的形式传到前端,浏览器自动就会识别下载了