일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- WebView
- dovecot
- php 시큐어코딩
- Mail Server
- xe
- 자동 생성
- UML
- 안드로이드 gcm
- android 효과음
- 안드로이드 푸시
- curl
- C#
- php 취약점
- roundcube
- FCM
- 우분투
- chart.js
- html5
- soundpool
- 폼메일
- not working
- Android
- 자바스크립트
- 설치
- 안드로이드 푸쉬
- 안드로이드
- mysql
- C# IO
- PHP
- javascript
- Today
- Total
그러냐
c# 폴더 전체 복사 본문
검색하면
public void CopyFolder(string sourceFolder, string destFolder)
{
if (!Directory.Exists(destFolder))
Directory.CreateDirectory(destFolder);
string[] files = Directory.GetFiles(sourceFolder);
string[] folders = Directory.GetDirectories(sourceFolder);
foreach (string file in files)
{
string name = Path.GetFileName(file);
string dest = Path.Combine(destFolder, name);
File.Copy(file, dest);
}
foreach (string folder in folders)
{
string name = Path.GetFileName(folder);
string dest = Path.Combine(destFolder, name);
CopyFolder(folder, dest);
}
}
이런 소스가 많이 검색된다.. msds에서 검증된 소스로 돌려보면 아주 쉽게 잘된다
그런데
https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/file-system/how-to-provide-a-progress-dialog-box-for-file-operations
링크에서 알려주듯이 참조추가한 후 아래와 같이 작성하면 다이얼로그까지 뜨면서 실제로 복사하는 듯한 수행을 해준다
결론 아래 방법 ***강추***
// The following using directive requires a project reference to Microsoft.VisualBasic. using Microsoft.VisualBasic.FileIO; class FileProgress { static void Main() { // Specify the path to a folder that you want to copy. If the folder is small, // you won't have time to see the progress dialog box. string sourcePath = @"C:\Windows\symbols\"; // Choose a destination for the copied files. string destinationPath = @"C:\TestFolder"; FileSystem.CopyDirectory(sourcePath, destinationPath, UIOption.AllDialogs); } }
'c#' 카테고리의 다른 글
안드로이드와 PC간의 USB 통신 (2) (0) | 2019.01.02 |
---|---|
안드로이드와 PC간의 USB 통신 (1) (0) | 2019.01.02 |
[WPF] Table 작성하기 (0) | 2018.12.04 |
[C#]관리자 권한 실행되는 프로그램 생성 (0) | 2017.12.06 |
c# 현재 날짜, 시간 얻어오기(Stirng 반환) (0) | 2017.11.08 |