gpt4 book ai didi

c# - asp.net 如何删除文件夹中的特定文件

转载 作者:可可西里 更新时间:2023-11-01 03:12:40 24 4
gpt4 key购买 nike

这是一笔交易 我得到了一个名为 gridview1 的 datagridviewer 和一个 fileupload1 当我上传文件时,它会使用文件名和路径更新数据库中的 gridview1 和表,并将所述文件存储在文件夹“Mag”中...但是现在我想做的是反过来我知道如何使用 gridview 删除表条目但是从文件夹“Mag”中删除文件不起作用在 C# 或代码隐藏中使用了以下代码

protected void GridView1_Del(object sender, EventArgs e)  
{
string DeleteThis = GridView1.SelectedRow.Cells[0].Text;
string[] Files = Directory.GetFiles(@"i:/Website/WebSite3/Mag/");

foreach (string file in Files)
{
if (file.ToUpper().Contains(DeleteThis.ToUpper()))
{
File.Delete(file);
}
}
}

它给我错误

"Object reference not set to an instance of an object."

请告诉我我做错了什么是新手,不需要深入了解平台,因此我们将不胜感激提前致谢标记

这是我找到的答案 感谢 Tammy 和其他所有人的所有答案

好的,交易目标函数从存储文件的项目文件夹中的 gridview 和数据库表和文件中删除文件详细信息

在您想要包含的 gridview 的脚本部分

OnRowDeleting="FuntionName"

不是

OnSelectedIndexChanged = "FuntionName"

OnRowDeleted="FuntionName"

然后在 C# 代码中(代码隐藏)

protected void FuntionName(object sender, GridViewDeleteEventArgs e)
{
// storing value from cell
TableCell cell = GridView1.Rows[e.RowIndex].Cells[0];

// full path required
string fileName = ("i:/Website/WebSite3/Mag/" + cell.Text);

if(fileName != null || fileName != string.Empty)
{
if((System.IO.File.Exists(fileName)))
{
System.IO.File.Delete(fileName);
}

}
}

仅供想学习的人引用

OnRowDeleting="FuntionName"用于在删除行之前,您可以像我一样取消删除或对数据运行函数

OnRowDeleted="FuntionName"直接删除

最佳答案

这是我删除文件的方式

if ((System.IO.File.Exists(fileName)))
{
System.IO.File.Delete(fileName);
}

还要确保您在删除中传递的文件名是准确的路径

编辑

您也可以改用以下事件,或者只使用此代码段中的代码并在您的方法中使用

void GridView1_SelectedIndexChanged(Object sender, EventArgs e)
{

// Get the currently selected row using the SelectedRow property.
GridViewRow row = CustomersGridView.SelectedRow;

//Debug this line and see what value is returned if it contains the full path.
//If it does not contain the full path then add the path to the string.
string fileName = row.Cells[0].Text

if(fileName != null || fileName != string.empty)
{
if((System.IO.File.Exists(fileName))
System.IO.File.Delete(fileName);

}
}

关于c# - asp.net 如何删除文件夹中的特定文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14251220/

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