파일이 완전히 기록될 때까지 대기
감시 디렉터리에 파일이 생성되면 일반적인 작업은 파일을 다른 디렉터리에 복사하는 것입니다. 위치. 그러나 대용량 파일 전송의 경우 복사 프로세스가 시작되기 전에 파일이 완전히 기록되지 않아 오류가 발생할 수 있습니다.
이 문제를 해결하려면 복사하기 전에 파일 상태를 확인하는 것이 좋습니다. 한 가지 방법은 IsFileLocked 함수를 사용하는 것입니다. 이 함수는 파일이 다른 스레드에 의해 계속 쓰이거나 처리되는 경우 True를 반환합니다. 예는 다음과 같습니다.
private bool IsFileLocked(FileInfo file) { FileStream stream = null; try { stream = file.Open(FileMode.Open, FileAccess.ReadWrite, FileShare.None); } catch (IOException) { return true; } finally { if (stream != null) stream.Close(); } return false; }
이 코드는 FileSystemWatcher_Created 이벤트 핸들러에 통합될 수 있습니다.
public static void listener_Created(object sender, FileSystemEventArgs e) { while (IsFileLocked(new FileInfo(e.FullPath))) { // Wait for file to finish writing } File.Copy(e.FullPath, @"D:\levan\FolderListenerTest\CopiedFilesFolder\" + e.Name); }
또는 다음 방법을 사용할 수 있습니다.
const int ERROR_SHARING_VIOLATION = 32; const int ERROR_LOCK_VIOLATION = 33; private bool IsFileLocked(string file) { if (File.Exists(file) == true) { FileStream stream = null; try { stream = File.Open(file, FileMode.Open, FileAccess.ReadWrite, FileShare.None); } catch (Exception ex2) { int errorCode = Marshal.GetHRForException(ex2) & ((1 << 16) - 1); if ((ex2 is IOException) && (errorCode == ERROR_SHARING_VIOLATION || errorCode == ERROR_LOCK_VIOLATION)) { return true; } } finally { if (stream != null) stream.Close(); } } return false; }
위 내용은 파일을 복사하기 전에 파일이 완전히 기록되었는지 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!