C# 같은 프로세스가 사용하는 파일 강제 삭제

if (File.Exists(FilePath))
{
	GC.Collect();
	GC.WaitForPendingFinalizers();
	FileInfo f = new FileInfo(FilePath);
	f.Delete();
}
이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다