我有一个名为PCLtoMove的文件夹。我已在此文件夹中应用了filewatcherSystem,以将文件从此文件夹移动到另一个文件夹。我第一次启动Windows服务它工作正常,但从下次它提供异常 -
该进程无法访问文件' C:\ PCLtoMove \ fileName.pcl'因为它正被另一个进程使用。
移动文件的代码是 -
private void SavionFileWatcher_Created(object sender, System.IO.FileSystemEventArgs e)
{
try
{
string sourcePath = e.FullPath;
string destination = ConfigurationManager.AppSettings["destination"] + e.Name;
File.Move(sourcePath, destination);
}
catch (Exception ex)
{
this.EventLog.WriteEntry(ex.Message, EventLogEntryType.Information);
}
}
请告诉我,我在做什么。
答案 0 :(得分:0)
我通过在上面的代码中添加以下代码来获得解决方案。它确认文件已完全移动或创建。
FileStream fs = new FileStream(sourcePath, FileMode.Open, FileAccess.ReadWrite);
fs.ReadByte();
fs.Seek(0, SeekOrigin.Begin);
fs.Dispose();
File.Move(sourcePath,destination);
break;