处理xml文件并移动到另一个文件夹

时间:2015-07-15 16:23:09

标签: c# xml

处理完每个xml文件后,我需要将其移动到另一个文件夹。执行此操作的代码是什么以及放置它的位置,确保如果目标中存在具有相同名称的文件,则会覆盖该文件

                string Path1 = @"D:\dataIn";
                string Path2 = @"D:\dataOut";

                con.Open();
                label1.Text = "";

                foreach (string file in Directory.EnumerateFiles(Path1, "*.xml"))
                {
                    DataSet ds = new DataSet();
                    ds.ReadXml(file);
                    DataTable dt1 = ds.Tables["Order"];
                    DataTable dt2 = ds.Tables["Details"];
                    using (SqlBulkCopy bc = new SqlBulkCopy(con))
                    {
                        bc.ColumnMappings.Add("account", "account");
                        bc.ColumnMappings.Add("date", "date");
                        bc.ColumnMappings.Add("value", "value");
                        bc.DestinationTableName = "header";
                        bc.WriteToServer(dt1);
                    }
                    using (SqlBulkCopy bc = new SqlBulkCopy(con))
                    {
                        bc.ColumnMappings.Add("itemID", "itemID");
                        bc.ColumnMappings.Add("qty", "qty");
                        bc.ColumnMappings.Add("price", "price");
                        bc.DestinationTableName = "items";
                        bc.WriteToServer(dt2);
                    }                    
                }

2 个答案:

答案 0 :(得分:0)

您可能正在寻找File.Move

不要忘记IO命名空间:

using System.IO;

然后移动文件的代码,你将把它放在for循环的末尾:

if (File.Exists(newFile)) // Did we find the file?
{
    File.Delete(newFile); // Yep, so delete it.
}
File.Move(file, newFile); // Move the file. 

您也可以使用File.Copy,但如果您想要移动"那么您必须删除该文件。它。

以下是您对foreach循环的所作所为:

            foreach (string file in Directory.EnumerateFiles(Path1, "*.xml"))
            {
                string newFile = path2 + @"\" + Path.GetFileName(file);
                DataSet ds = new DataSet();
                ds.ReadXml(file);
                DataTable dt1 = ds.Tables["Order"];
                DataTable dt2 = ds.Tables["Details"];
                using (SqlBulkCopy bc = new SqlBulkCopy(con))
                {
                    bc.ColumnMappings.Add("account", "account");
                    bc.ColumnMappings.Add("date", "date");
                    bc.ColumnMappings.Add("value", "value");
                    bc.DestinationTableName = "header";
                    bc.WriteToServer(dt1);
                }
                using (SqlBulkCopy bc = new SqlBulkCopy(con))
                {
                    bc.ColumnMappings.Add("itemID", "itemID");
                    bc.ColumnMappings.Add("qty", "qty");
                    bc.ColumnMappings.Add("price", "price");
                    bc.DestinationTableName = "items";
                    bc.WriteToServer(dt2);
                }

                if (File.Exists(newFile)) // Did we find the file?
                {
                    File.Delete(file); // Yep, so delete it.
                }
                File.Move(file, newFile); 
           }

答案 1 :(得分:0)

File.Copy将复制该文件,覆盖具有该名称的任何现有文件。 见here