保存上传的文件 - 使用

发布于 2025-01-07 16:17:59 字数 101 浏览 0 评论 0原文

我已经使用 FileUpload 控件上传了一个文件。我已经获得了路径和所有内容,我想将图像保存到服务器。我不想使用 SaveAs() 方法。 我想知道有没有办法用using语句保存文件?

I've uploaded a file with the FileUpload control. I've got the path and everything and I would like to save the image to the server. I don't want to use the SaveAs() method.
I wonder, is there a way to save the file with using-statement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

遗忘曾经 2025-01-14 16:17:59

查看 http://msdn.microsoft.com/en-us /library/system.io.filestream.aspx。您应该能够将数据流式传输到在永久存储中创建的新文件中。或者只是从您所说的已有的 tmp 路径执行复制操作。

http://msdn。 microsoft.com/en-us/library/system.io.file.copy(v=vs.71).aspx

Check out http://msdn.microsoft.com/en-us/library/system.io.filestream.aspx. You should be able to stream the data into a new file created in permanent storage. Or just do a copy operation from the tmp path you said you already have.

http://msdn.microsoft.com/en-us/library/system.io.file.copy(v=vs.71).aspx

萌无敌 2025-01-14 16:17:59

您可以使用 StreamReader 从文件上传中读取文件,并使用 StreamWriter 类通过 Server.MapPath() 函数将其写入您的服务器(您的服务器绝对路径)

You can use StreamReader to read the file from file upload and use StreamWriter class to write it to your server with Server.MapPath() function(ur server absolute path)

香草可樂 2025-01-14 16:17:59

您有 FileUpload.FileBytes 方法返回上传文件的字节数组或使用 FileUpload.PostedFile.InputStream 属性获取上传文件的流。

You have FileUpload.FileBytes method which returns array of bytes of uploaded file or use FileUpload.PostedFile.InputStream property to get stream of uploaded file.

请止步禁区 2025-01-14 16:17:59

试试这个

string pilepath = Server.MapPath(".") +"\\"+ fl.FileName;
System.IO.File.WriteAllBytes(pilepath, fl.FileBytes);

fl.FileBytes
获取使用 FileUpload 控件指定的文件中的字节数组。

Try this

string pilepath = Server.MapPath(".") +"\\"+ fl.FileName;
System.IO.File.WriteAllBytes(pilepath, fl.FileBytes);

fl.FileBytes
Gets an array of the bytes in a file that is specified by using a FileUpload control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文