1

我有一个加载、处理和移动文件 CSV 的进程。这种行为有两种方式表示,但我在下面描述的第二种方式中有一个问题:

  1. 源目录和目标目录在数据库中设置。所以读取和移动文件效果很好,从源目录中消失了副本。(好的)

  2. 源目录已从 FileUpload 控件 (fuControl.PostedFile.FileName) 中获取,并且目标仍设置在数据库中。所以读取并移动文件,但此时,我看到文件已复制到目标目录,但锁定的副本保留在源目录中,只有在我刷新页面 (F5) 或退出 Internet 浏览器时才会消失。(不好)那么,我怎样才能避免这种情况呢?

这是我的示例代码:

    private void RunProcess(string path)
    {
        try
        {
            using (StreamReader stream = File.OpenText(path))
            {
                this.ProcessFile(stream);
            }
            string destination = this.GetDestinationPath(); //Get the path from DB
            string fileName = Path.GetFileName(path);
            File.Move(path, destination + fileName);
        }
        catch (Exception e)
        {
            throw new Exception(e.Message, e);
        }
    }

- - -编辑 - - -

我在转发器中有我的 FileUpload 控件,我像这样使用它。它不起作用,副本仍然存在。

    protected void repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
    {
        if (e.CommandName == "Browse")
        {
            using (FileUpload fuSource = (FileUpload)e.Item.FindControl("fuSource"))
            {
                if (fuSource != null)
                {
                    if (String.IsNullOrEmpty(fuSource.FileName) == false)
                    {
                        string filePath = fuSource.PostedFile.FileName;
                        this.RunProcess(filePath);
                    }
                }
            }
        }
   }

-----编辑2-----

    public void ProcessFile(StreamReader stream)
    {
        string line = String.Empty;
        while ((line = stream.ReadLine()) != null)
        {
            //Just 1 line.
            Console.WriteLine(line);
        }
    }
4

1 回答 1

3

FileUpload是一次性的,因此它应该包含在 using 语句中。这应该会释放任何文件锁定,否则这些锁定会一直保留到 Web 应用程序超时。

using(var fileUploadControl = new FileUpload())//...
于 2013-11-12T21:10:36.247 回答