탑에디터

파일 복사

2019.08.21 09:37

toped2017 조회 수:5613

using System;
using System.IO;

public static bool CopyFile(String pSourceFile, String pTargetFile, bool pOverWrite, ref String pErrorMessage)
{
    try
    {
        File.Copy(pSourceFile, pTargetFile, pOverWrite);
        return true;
    }
    catch (System.IO.IOException e)
    {
        pErrorMessage = e.Message;
        return false;
    }            
}
번호 제목 글쓴이 날짜 조회 수
4 StreamWriter toped2017 2020.12.29 290
3 SortedDictionary 사용법 toped2017 2019.10.15 1425
2 파일삭제 toped2017 2019.09.16 551
» 파일 복사 toped2017 2019.08.21 5613