Невозможно получить доступ к файлу, который нужно удалить в программе qr code - PullRequest
0 голосов
/ 13 ноября 2018

У меня есть qr code asp.net, веб-форма, и я получаю сообщение об ошибке

System.IO.IOException: «Процесс не может получить доступ к файлу» C: \ Users \ Asus.DESKTOP-BTB81TA \ Desktop \ bikestop \ bikestop \ images \ qr code stuff \ fileName.png ', так как он используется другой процесс.

в одной из моих строк:

File.Delete(filePath2);

Вот полный код:

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.IO; //For MemoryStream
using System.Web.Services; //For WebMethod attribute
using Bytescout.BarCode;
using System.Web.UI.HtmlControls;
using System.Drawing;
using System.Drawing.Imaging;
using System.Threading;
using System.Text;
using System.IO;
using AForge;
using AForge.Video;
using AForge.Video.DirectShow;
using ZXing;
using ZXing.Aztec;


namespace bikestop
{

    public partial class bookRide : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
        // int i = 0;
        protected void Scan_Click(object sender, EventArgs e)
        {


            Rectangle rect = new Rectangle(0, 0, 2000, 1000);
            string filePath = AppDomain.CurrentDomain.BaseDirectory;
            string filePath2;
            filePath2 = @"" + filePath + "\\images\\qr code stuff\\fileName.png";


            //do stuff
            using (Bitmap bmp = new Bitmap(rect.Width, rect.Height, PixelFormat.Format32bppArgb))
            {
                using (Graphics g = Graphics.FromImage(bmp))
                {
                    g.CopyFromScreen(rect.Left, rect.Top, 0, 0, bmp.Size, CopyPixelOperation.SourceCopy);
                }
                if (System.IO.Directory.Exists(filePath2) == true)
                {
                    bmp.Save(filePath2, ImageFormat.Png);
                    bmp.Dispose();
                }
                else
                {
                    File.Delete(filePath2);
                    bmp.Save(filePath2, ImageFormat.Png);
                    bmp.Dispose();
                }

                try
                {
                    IBarcodeReader barcodeReader = new BarcodeReader();
                    var barcodeBitmap = (Bitmap)Bitmap.FromFile(filePath2);
                    var barcodeResult = barcodeReader.Decode(barcodeBitmap);
                    Output.Text = barcodeResult.Text;
                    Output.NavigateUrl = barcodeResult.Text;

                }
                catch
                {
                    Output.Text = "No barcode found";
                }
            }
        }
    }
}
...