■ FileSystem 클래스의 DeleteDirectory 정적 메소드를 사용해 휴지통으로 디렉토리를 보내는 방법을 보여준다.
▶ 예제 코드 (C#)
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 32 33 |
using Microsoft.VisualBasic.FileIO; #region 휴지통으로 디렉토리 보내기 - SendDirectoryToWastebasket(directoryPath, showConfirmDialog) /// <summary> /// 휴지통으로 디렉토리 보내기 /// </summary> /// <param name="directoryPath">디렉토리 경로</param> /// <param name="showConfirmDialog">확인 대화 상자 표시 여부</param> /// <returns>처리 결과</returns> public bool SendDirectoryToWastebasket(string directoryPath, bool showConfirmDialog) { try { FileSystem.DeleteDirectory ( directoryPath, showConfirmDialog ? UIOption.AllDialogs : UIOption.OnlyErrorDialogs, RecycleOption.SendToRecycleBin, UICancelOption.DoNothing ); return true; } catch { return false; } } #endregion |