string fileName = "{{복사 할 파일명}}";
string sourceFilePath = "{{원본 경로}}";
string targetFilePath = "{{복사 할 경로}}";
boolean existsCheck = false;
boolean fileExists = false;
FileInfo file;
sourceFilePath = sourceFilePath + @"/" + fileName;
file = new FileInfo(sourceFilePath);
fileExists = file.Exists;
if(fileExists)
{
try
{
if (!Directory.Exists(targetFilePath))
Directory.CreateDirectory(targetFilePath);
targetFilePath += "/" + {{복사 할 파일명}};
existsCheck = new FileInfo(targetFilePath);
if (existsCheck.Exists)
existsCheck.Delete();
file.CopyTo(targetFilePath);
Console.WriteLine("ORG - OK :" + targetFilePath);
}
catch (Exception ex)
{
Console.WriteLine("exception file path : " + targetFilePath);
}
} else {
Console.WriteLine("대상파일이 존재하지 않습니다.");
}
'Web_Application > C#' 카테고리의 다른 글
Convert string format to Datetime (0) | 2017.06.27 |
---|---|
[다음 API] 주소 검색 샘플 (0) | 2017.06.27 |
[c#] 경과 시간을 표시할 때 (0) | 2017.05.12 |
[c#] StreamWriter 로 텍스트 파일 생성/쓰기 (0) | 2017.05.11 |
[Selenium] “IEDriverServer does not exist” error during running Selenium test with C# in Windows 7 (0) | 2017.03.29 |