多数の XML ファイルを含むファイル システム上に存在するフォルダーがあります。10,000としましょう。
複数 (5) の Windows サービスがそのフォルダーを 30 秒ごとにチェックし、ファイルを同時に処理しています。サービス プロセス コードを十分にスマートに記述して、処理のための同時要求を処理できるようにしようとしています。
ただし、いくつかのファイルでハングアップすることがあります。
E[The process cannot access the file '...' because it is being used by another process.]
上記のエラーは、処理中に約 1% のファイルに記録されます。これを防ぐために次のコードを改善するにはどうすればよいですか?
class Program
{
private static string _instanceGuid;
static string InstanceGuid
{
get
{
if(_instanceGuid == null)
{
_instanceGuid = Guid.NewGuid().ToString();
}
return _instanceGuid;
}
}
static void Main(string[] args)
{
string[] sourceFiles = Directory.GetFiles("c\\temp\\source\\*.xml")
.OrderBy(d => new FileInfo(d).CreationTime).ToArray();
foreach (string file in sourceFiles)
{
var newFileName = string.Empty;
try
{
// first we'll rename in this way try and
// i would think it should throw an exception and move on to the next file. an exception being thrown means that file should already be processing by another service.
newFileName = string.Format("{0}.{1}", file, InstanceGuid);
File.Move(file, newFileName);
var xml = string.Empty;
using (var s = new FileStream(newFileName, FileMode.Open, FileAccess.Read, FileShare.None))
using (var tr = new StreamReader(s))
{
xml = tr.ReadToEnd();
}
// at this point we have a valid XML save to db
}
catch (FileNotFoundException ex)
{
// continue onto next source file
}
catch (Exception ex)
{
// log error
}
}
}
}