我想将我所有的图片名称显示在listbox
. 我试图弄清楚如何检索文件名。我试过这个
protected void Page_Load(object sender, EventArgs e)
{
string u = Request.Url.AbsoluteUri.ToString();
string serverPath = u.Substring(0, u.LastIndexOf("/")) + "/UBOimages";
Label1.Text = serverPath;
DirectoryInfo dirInfo = new DirectoryInfo(Server.MapPath("~/UBOimages"));
//FileInfo[] fileInfo = dirInfo.GetFiles();
Label2.Text = dirInfo.ToString();
}
但标签中的结果如下所示:
http://localhost:49170/UBOimages
C:\Users\John\Documents\UBO\uboWebCustomer\HuronWood\HuronWood\UBOimages
当加载到服务器上时,这个页面会给出一个错误,因为它不喜欢 dirInfo 路径。从文件夹(例如图像文件夹)中检索所有文件的正确方法是什么