폴더

    폴더 복사...

    밑의 함수의 인자를 보시는것처러 처음에는 복사할 폴더 경로 다음인자는 복사되어지는 위치 그리고 마지막 인자는 true를 넣어주세요..ㅋㅋ 다 같이 공유하면서..ㅋㅋㅋ 그럼 수고하세요~~ /// /// Floder Copy /// /// /// /// private void CopyFolder(string szSourceFolderPath, string szDestinationFolderPath, bool bOverwrite) { if (Directory.Exists(szSourceFolderPath)) { if (Directory.Exists(szDestinationFolderPath + "\\" + (new DirectoryInfo(szSourceFolderPath).Name)) && (!bOverwr..