1

标题解释了一小部分,所以让我解释两个场景。场景 1 引发错误,场景 2 就像一个魅力。

场景一:

我使用以下方法签出文档,当文档保存到已经是具有该名称的文件的位置时,它会被覆盖,但令人惊讶的是,它也出于某种原因锁定了文件:

public bool SaveDocument(int bestandsId, string fileName, string path)
{
    //Initialize the Sql Query
    var sql = "SELECT DATA FROM Documenten WHERE BESTAND_ID = " + bestandsId;
    //Initialize SqlConnection
    var connection = new SqlConnection(Instellingen.Instance.DmsConnectionString);
    //Initialize SqlCommand
    var command = new SqlCommand(sql, connection);

    try
    {
        //Open Connection
        connection.Open();
        //Fill 'data' from command.ExecuteScalar()
        var data = (byte[]) command.ExecuteScalar();
        //Write 'data' to file.
        File.WriteAllBytes(path + @"\" + fileName, data);
        //Return true if no exceptions are raised.
        return true;
    }
    catch (Exception ex)
    {
        //Initialize Dms Exception
        var dmsEx = new DmsException(ex);
        //Write Dms Exception to Log File.
        DmsException.WriteErrorsToLog(dmsEx);
        //Return false, because something went wrong...
        return false;
    }
    finally
    {
        //Close Sql Connection
        connection.Close();
    }
}

该方法运行顺利。不会出现问题。但是当我用下面的方法签入文档时,我得到了这个异常

例外

场景二:

当我使用该SaveDocument方法将文档保存到没有同名文件的位置时,该文件是新创建的,可以进行编辑或您想用它做什么。

使用场景 2效果很好。如上图所示,该文档已准备好再次签入,而不会收到错误消息。

请求代码:@CodeCaster

----------------------开始编辑--------------- ------------------

    public static bool InsertDocument(Document document)
    {
        try
        {
            //Exception is thrown when Initializing the FileStream
            var fileStream = new FileStream(document.Fileinfo.FullName, FileMode.Open, FileAccess.Read); 

            var binaryReader = new BinaryReader(fileStream);
            var totalNumberOfBytes = new FileInfo(document.Fileinfo.FullName).Length;
            var data = binaryReader.ReadBytes((Int32) totalNumberOfBytes);

            fileStream.Close();
            fileStream.Dispose();
            binaryReader.Close();
            binaryReader.Dispose();

            var pdftext = string.Empty;
            try
            {
                if (document.DocumentType == ".pdf")
                {
                    var reader = new PdfReader(document.Fileinfo.FullName);
                    var text = string.Empty;
                    for (var page = 1; page <= reader.NumberOfPages; page++)
                    {
                        text += PdfTextExtractor.GetTextFromPage(reader, page);
                    }
                    reader.Close();
                    pdftext = text;
                }
            }
            catch (Exception ex)
            {
                var dmsEx = new DmsException(ex);
                DmsException.WriteErrorsToLog(dmsEx);
            }


            return InsertIntoDatabase(document.BestandsNaam, document.Eigenaar, document.Omschrijving,
                                      document.DatumToevoeg.ToString(), document.DatumIncheck.ToString(),
                                      document.DatumUitcheck.ToString(), document.UitgechecktDoor,
                                      document.DocumentType, data, pdftext, document.Versie, document.Medewerker,
                                      document.DossierNummer, document.PersonalFolderId.ToString(),
                                      document.DossierFolderId, -1, document.DocumentProgres,
                                      document.OriBestandId.ToString(), 0);
        }
        catch (Exception ex)
        {
            var dmsEx = new DmsException("Fout bij inlezen voor toevoeging van nieuw document",
                                         "Klasse Document (InsertDocument)", ex);
            ExceptionLogger.LogError(dmsEx);

            return false;
        }
    }

---------------------------------结束编辑--------------- ------------------

我的问题:

  1. 文件被覆盖时被锁定的原因是什么?
  2. 我怎样才能防止这种情况发生?
  3. 是否可以设置某种函数或参数使其不会被锁定?

使用名为“Unlocker”的工具,我设法查看了锁定文件的程序,YES -> DMS.exe 是我的应用程序......。在此处输入图像描述

4

1 回答 1

-2
using(var stream = File.Create(newPath)){}
File.WriteAllBytes(newPath, item.File);

使用 StreamWriter

using (FileStream fs = File.Create(newPath))
{
    fs.Write(item.File, 0, item.File.Length);
}

或者:

File.WriteAllBytes(newPath, item.File);

参考:“该进程无法访问该文件,因为它正在被另一个进程使用”与图像

于 2013-12-20T13:43:01.210 回答