안녕하세요.
처음 보는 상황이 생겨서 질문 드립니다.
파일(폴더)을 Copy하는 함수입니다.
======================================================================================================================
public static void CopyFolder(string strSrcPath, string strDestPath)
{
try
{
#if USE_VB_COPY
FileSystem.CopyDirectory(strSrcPath, strDestPath, UIOption.AllDialogs);
#else
foreach (string strDirPath in Directory.GetDirectories(strSrcPath, "*", System.IO.SearchOption.AllDirectories))
{
Directory.CreateDirectory(strDirPath.Replace(strSrcPath, strDestPath));
}
foreach (string strNewPath in Directory.GetFiles(strSrcPath, "*.*", System.IO.SearchOption.AllDirectories))
{
File.Copy(strNewPath, strNewPath.Replace(strSrcPath, strDestPath), true);
}
#endif
}
catch (System.Exception ex)
{
System.Windows.Forms.MessageBox.Show($"파일 복사 도중 예외가 발생하였습니다.{System.Environment.NewLine}{ex.Message}");
}
}
======================================================================================================================
위의 함수를 "버튼(폴더 백업 버튼)"을 클릭하면 호출 합니다.
현재 문제 상황은 파일 또는 폴더를 복사할 때 일정하지 않게 프로그램이 꺼져 버립니다.
(30%일 때 꺼지는 경우도 있으며, 복사를 시작하자 마자 꺼지는 경우도 있으며 일정하지 않습니다.)
FileSystem.CopyDirectory 함수를 쓰나 foreach를 돌아가며 Copy 또는 CreateDirectory를 쓰나 동일하게 꺼져 버립니다.
Debug를 잡으려고 해도 프로그램이 종료되어버려 Debug도 풀려버립니다.
(Exception도 발생하지 않습니다.)
혹시나 윈도우 이벤트 로그에 뭔가 찍혔나 확인해보아도 아무 이상도 보이지 않습니다.
해볼 수 있는 마지막 수단으로 새로 프로젝트를 생성해서 버튼만 생성해서 그 버튼 안에 저 내용만 넣어서 해보아도 같은 상황입니다.
=======================================================================================================================
private void Button1_Click(object sender, EventArgs e)
{
try
{
#if USE_VB_COPY
FileSystem.CopyDirectory(strSrcPath, strDestPath, UIOption.AllDialogs);
#else
foreach (string strDirPath in Directory.GetDirectories(strSrcPath, "*", System.IO.SearchOption.AllDirectories))
{
Directory.CreateDirectory(strDirPath.Replace(strSrcPath, strDestPath));
}
foreach (string strNewPath in Directory.GetFiles(strSrcPath, "*.*", System.IO.SearchOption.AllDirectories))
{
File.Copy(strNewPath, strNewPath.Replace(strSrcPath, strDestPath), true);
}
#endif
}
catch (System.Exception ex)
{
System.Windows.Forms.MessageBox.Show($"파일 복사 도중 예외가 발생하였습니다.{System.Environment.NewLine}{ex.Message}");
}
}
=======================================================================================================================
이전에는 잘 썼던 함수인데 갑자기 이런 상황이 생겼습니다.
문제가 무엇인지 모르겠어서 질문 드려봅니다.
※ 회사에서 작성하는 것이라 프로젝트를 직접 올리지 못하는 점 양해 부탁 드립니다.
[최초 등록일: ]
[최종 수정일: 4/14/2023]