gpt4 book ai didi

c# - 如何在 asp .net 中的字符串变量中获取文件上传控件的完整路径?

转载 作者:行者123 更新时间:2023-11-30 20:57:02 25 4
gpt4 key购买 nike

我想在字符串变量中获取文件上传控件的完整路径。该文件可以存储在项目根目录以外的任何位置。任何人都请帮忙。

情况是:

string file = Path.GetFileName(ExcelFileUpload.FileName);
if (file.EndsWith(".xlsx"))
{
// Reading from a binary Excel file (format; *.xlsx)
FileStream stream = File.Open(file, FileMode.Open, FileAccess.Read);

最佳答案

听起来您实际上是在客户端计算机上询问文件的原始路径。

这是 (a) 无用的(它在不同的计算机上)和 (b) 不可能获得(浏览器不会告诉你)。

你想做什么?

关于c# - 如何在 asp .net 中的字符串变量中获取文件上传控件的完整路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17149254/

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