gpt4 book ai didi

c# - 等同于 C# 中的 $_FILES

转载 作者:行者123 更新时间:2023-11-30 19:13:34 24 4
gpt4 key购买 nike

PHP 的 $_FILES 变量在 C# 中的等价物是什么?或者至少以相同的方式访问文件的东西。我有一个无法更改的上传表单,需要了解如何获取这些文件。

最佳答案

看看Request.Files,例如:

foreach (HttpPostedFile item in Request.Files)
{
var filename = item.FileName;

var fileBytes = new byte[item.ContentLength];
item.InputStream.Read(fileBytes, 0, item.ContentLength);

// fileBytes now contains the content of the file
// filename contains the name of the file
}

关于c# - 等同于 C# 中的 $_FILES,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3375644/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com