如何修复该进程无法访问该文件,因为该文件正在被另一个进程使用

时间:2019-05-06 19:41:48

标签: c# winforms timer picturebox

我写了一个小代码,在不同的屏幕上制作幻灯片演示程序。删除和复制部分也一切正常,除非我在显示第一张图片后立即进行。如果稍后再执行,调试器会介入。

private void timer1_Tick(object sender, EventArgs e)
{
    string[] images = Directory.GetFiles(@"D:\reflexscherm\root\Logo-teams2", "*.*");
    counter++;
    var maxcount = images.Count();
    textBox1.Text = maxcount.ToString();

    if (counter > maxcount - 1)
    {
        counter = 0;
        maxcount = images.Count();
    }

    //pb1.Image.Dispose();

    pb1.Image = Image.FromFile(images[counter]);
    //Image oldImage = pb1.Image;
    //pb1.Image.Dispose();
    //oldImage.Dispose();
    //pb1.Image = Image.FromFile(images[counter]);
}

private void button2_Click(object sender, EventArgs e)
{ 
    timer1.Stop();
    Image oldImage = pb1.Image; 
    pb1.Image = Image.FromFile(@"D:\reflexscherm\root\sponsor1\x. Groot-logo-REFLEX.jpg");
    pb1.Image.Dispose();
    oldImage.Dispose();

    string[] files = System.IO.Directory.GetFiles(sourcepath);
    string[] delfiles = Directory.GetFiles(targetpath);
    this.Hide();


    foreach (string d in delfiles)
    {
        Image oldI = pb1.Image;
        pb1.Image = Image.FromFile(@"D:\reflexscherm\root\sponsor1\x. Groot-logo-REFLEX.jpg");
        //pb1.Image.Dispose();
        oldI.Dispose();
        File.Delete(d);
    }
    foreach (string s in files)
    {
        string fname = s.Substring(sourcepath.Length + 1);
        File.Copy(Path.Combine(sourcepath, fname), Path.Combine(targetpath, fname), true);
        this.Show();
        timer1.Start();
    }

我正在寻找对代码进行调整的帮助,因此当我在源文件夹中更改文件时,程序会将文件从源文件夹复制到目标文件夹。我知道如何使用filewatcher。我正在使用按钮来测试代码。

3 个答案:

答案 0 :(得分:0)

如果您不希望其被锁定,则应使用只读文件访问权限:

using( FileStream stream = new FileStream( path, FileMode.Open, FileAccess.Read ) )

{

     image = Image.FromStream( stream );

}

希望有帮助...

答案 1 :(得分:0)

方法1:保留副本并分配控件的属性

当位图在多个地方使用时可以使用此方法,因此我们需要保留它以进行进一步的细化/分配并在以后保存到光盘中。

立即分配,存储和处置源位图,并删除图像文件:

Bitmap bitmap = null;
//---------------------------------------------

string imagePath = @"[Path of the Image]";

bitmap?.Dispose();
pictureBox1.Image?.Dispose();

using (Bitmap tempImage = new Bitmap(imagePath, true))
{
    bitmap = new Bitmap(tempImage);
    pictureBox1.Image = bitmap;
}

File.Delete(imagePath);

方法2:分配位图并立即将其丢弃

当需要将位图分配给控件然后移动/删除图像文件时,可以使用此方法。 Image会被立即处置,因此只能通过Control的属性使用:如果我们要求将其退还,有时我们得到的并不完全是我们提供的。

string imagePath = @"[Path of the Image]";
using (Image image = Image.FromFile(imagePath, true))
{
    pictureBox1.Image?.Dispose();
    pictureBox1.Image = new Bitmap(image);
}

File.Delete(imagePath);

请注意,分配给控件的旧图像(如果有的话)将在分配新图像之前被处理掉。

还请注意,我始终会指定保留内部ICM信息(如果有),将true指定为new Bitmap(imagePath, true)Image.FromFile(imagePath, true)的第二个参数。
有些图像不会看起来为您不喜欢的原始图像。

答案 2 :(得分:-1)

我之前遇到过同样的问题,我做了以下事情:

            this.photo.Dispose();
            this.photo.Refresh();
            this.photo.Image.Dispose();
            this.photo.Image = null;
            this.photo.ImageLocation = null;

而且值得。