我需要删除目录中的所有文件(由于图库脚本保留了完整尺寸的图片但没有使用它们!)。
我编写了一些代码,将查询转储到DataTable中,然后遍历记录。但是,当我介绍用于查找所有文件并删除它们的循环时,它似乎只运行第一个SiteID。应扫描至少350个目录,但它只执行第一个SiteID(此SiteID中的所有模块)。
任何想法,因为我难倒!
private void frmMain_Load(object sender, EventArgs e)
{
SqlConnection con = null;
try
{
// Open connection to the database
string ConnectionString = "server=(local);UID=x;PWD=y;database=mojoportal2";
con = new SqlConnection(ConnectionString);
con.Open();
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new DataSet();
DataTable dt = new DataTable();
da.SelectCommand = new SqlCommand(@"SELECT SiteID, ModuleID FROM mp_Modules where ModuleDefID = 16 ORDER By SiteID DESC", con);
da.Fill(ds, "Sites");
dt = ds.Tables["Sites"];
foreach (DataRow dr in dt.Rows)
{
string SiteID = dr["SiteID"].ToString();
string ModuleID = dr["ModuleID"].ToString();
string directoryPath = @"E:\Website\" + SiteID + @"\media\GalleryImages\" + ModuleID + @"\FullSizeImages";
MessageBox.Show("Deleting Files In " + directoryPath);
string[] files = Directory.GetFiles(directoryPath);
string[] dirs = Directory.GetDirectories(directoryPath);
foreach (string file in files)
{
MessageBox.Show(file);
//File.SetAttributes(file, FileAttributes.Normal);
//File.Delete(file);
}
}
}
catch (Exception ex)
{
// Print error message
MessageBox.Show(ex.Message);
}
finally
{
if (con.State == ConnectionState.Open)
con.Close();
}
}
答案 0 :(得分:0)
首先,我会在填充DataSet后立即关闭连接字符串。我会在您的DataTable上进行“快速观察”,并确保您的所有数据都存在。如果不然后修改您的查询。