WCF图像服务正在锁定文件

问题描述 投票:-1回答:1

我正在做一个c#wcf服务,我收到一堆图像,服务将它们合并到一个多图像的Tiff文件中。在服务结束时,我想删除原始文件,但我收到一个错误,其他一些进程正在锁定文件。

这是接收图像的代码(作为byte []列表)并将它们写入磁盘

public static List<string> SaveByteImagesToFile(List<byte[]> bytesToCopyIntoFiles, string imageReferenceType, string imageReferenceValue)
        {
            _applicationLogger.Debug(MethodBase.GetCurrentMethod().DeclaringType.Name, MethodBase.GetCurrentMethod().Name);

            string imageFinalPath = string.Empty;
            string joinImagesFilePath = string.Empty;

            List<string> imagesFilePath = new List<string>();

            int count = 1;

            try
            {
                if (bytesToCopyIntoFiles.Count == 0)
                {
                    throw new ArgumentNullException("bytesToCopyIntoFiles");
                }
                else
                {
                    joinImagesFilePath = SettingsManager.GetServiceSetting(AppSettingsKeys.CopyImagesToFilePath, "NO_VALID_FILEPATH");

                    if (joinImagesFilePath.IsValidFilePath(out string errorMessage, true, true))
                    {

                        foreach (byte[] image in bytesToCopyIntoFiles)
                        {
                            var imageFileName = imageReferenceType + "_" + imageReferenceValue + "_" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + count.ToString();
                            imageFinalPath = joinImagesFilePath + Path.DirectorySeparatorChar + imageFileName + ".tiff";

                            using (FileStream stream = new FileStream(imageFinalPath, FileMode.Create, FileAccess.ReadWrite))
                            {
                                stream.Write(image, 0, image.Length);
                                stream.Flush();
                            }

                            imagesFilePath.Add(imageFinalPath);
                            count++;
                        }
                    }
                    else
                    {
                        exceptionMessageType = MainRepository.GetExceptionMessage("E171");
                        throw new IOException(exceptionMessageType.ExceptionMessage + " " + errorMessage);
                    }
                }
                return imagesFilePath;
            }
            catch
            {
                throw;
            }
        }  

我如何或可以使用什么来阻止服务或任何进程锁定文件。正如您所看到的,我正在使用文件流的使用范围而没有任何运气。

有任何想法吗?谢谢

c# wcf imaging
1个回答
0
投票

解决!通过按特定顺序组织文件,在创建多页tiff时,到逻辑结束时,工作人员已经解锁资源,现在我可以毫无问题地删除它们。

© www.soinside.com 2019 - 2024. All rights reserved.