■ 엣지 브라우저의 캐시 이미지를 추출하는 방법을 보여준다.
▶ MainForm.cs
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
using System; using System.Collections.Generic; using System.IO; using System.Security.Principal; using System.Windows.Forms; namespace ExtraceEdgeImage { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 소스 디렉토리 포맷 /// </summary> private string sourceDirectoryFormat = @"C:\Users\{0}\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe"; /// <summary> /// 소스 디렉토리 /// </summary> private string sourceDirectory = null; /// <summary> /// 파일 확장자 딕셔너리 /// </summary> private Dictionary<string, string> fileExtensionDictionary = new Dictionary<string, string>(); /// <summary> /// 시작 파일 크기 /// </summary> private long startFileSize = 0L; /// <summary> /// 종료 파일 크기 /// </summary> private long endFileSize = 0L; /// <summary> /// 저장 디렉토리 /// </summary> private string saveDirectory = null; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.runButton.Click += runButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 실행 버튼 클릭시 처리하기 - runButton_Click(sender, e) /// <summary> /// 실행 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void runButton_Click(object sender, EventArgs e) { #region 소스 디렉토리를 설정한다. string userName = GetCurrentUserName(); this.sourceDirectory = string.Format(this.sourceDirectoryFormat, userName); #endregion #region 파일 확장자 딕셔너리를 설정한다. if(string.IsNullOrWhiteSpace(this.imageFileExtensionTextBox.Text)) { MessageBox.Show("이미지 파일 확장자 항목을 입력해 주시기 바랍니다."); return; } string fileExtensionList = this.imageFileExtensionTextBox.Text.Trim(); SetFileExtensionDictionary(this.fileExtensionDictionary, fileExtensionList); #endregion #region 시작 이미지 파일 크기를 설정한다. if(string.IsNullOrWhiteSpace(startImageFileSizeTextBox.Text)) { MessageBox.Show("시작 이미피 파일 크기 항목을 입력해 주시기 바랍니다."); return; } try { this.startFileSize = Convert.ToInt64(this.startImageFileSizeTextBox.Text); } catch { MessageBox.Show("시작 이미피 파일 크기 항목에 숫자를 입력해 주시기 바랍니다."); return; } #endregion #region 종료 이미지 파일 크기를 설정한다. if(string.IsNullOrWhiteSpace(endImageFileSizeTextBox.Text)) { MessageBox.Show("종료 이미피 파일 크기 항목을 입력해 주시기 바랍니다."); return; } try { this.endFileSize = Convert.ToInt64(this.endImageFileSizeTextBox.Text); } catch { MessageBox.Show("종료 이미피 파일 크기 항목에 숫자를 입력해 주시기 바랍니다."); return; } #endregion #region 저장 디렉토리를 설정한다. if(string.IsNullOrWhiteSpace(this.saveDirectoryTextBox.Text)) { MessageBox.Show("저장 디렉토리 항목을 입력해 주시기 바랍니다."); return; } this.saveDirectory = this.saveDirectoryTextBox.Text.Trim(); try { if(!Directory.Exists(this.saveDirectory)) { Directory.CreateDirectory(this.saveDirectory); } } catch { MessageBox.Show("저장 디렉토리 항목에 정확한 디렉토리를 입력해 주시기 바랍니다."); return; } #endregion #region 소스 파일 경로 리스트를 설정한다. string[] sourceFilePathArray = Directory.GetFiles(this.sourceDirectory, "*.*", SearchOption.AllDirectories); List<string> sourceFilePathList = new List<string>(); foreach(string sourceFilePath in sourceFilePathArray) { FileInfo sourceFileInfo = new FileInfo(sourceFilePath); if(!this.fileExtensionDictionary.ContainsKey(sourceFileInfo.Extension)) { continue; } if(this.startFileSize > 0) { if(sourceFileInfo.Length < this.startFileSize) { continue; } } if(this.endFileSize > 0) { if(sourceFileInfo.Length > this.endFileSize) { continue; } } sourceFilePathList.Add(sourceFilePath); } #endregion #region 저장 디렉토리에 있는 기존 파일들을 삭제한다. try { string[] deleteFilePathArray = Directory.GetFiles(this.saveDirectory, "*.*"); foreach(string deleteFilePath in deleteFilePathArray) { File.Delete(deleteFilePath); } } catch(Exception exception) { MessageBox.Show("저장 디렉토리에 있는 기존 파일들을 삭제중 에러가 발생했습니다.\n" + exception.Message); return; } #endregion #region 파일을 복사하거나 이동합니다. int i = 0; foreach(string sourceFilePath in sourceFilePathList) { string targetFileName = GetRightString("0000000000" + i.ToString(), 10); string targetFileExtension = Path.GetExtension(sourceFilePath); i++; File.Copy(sourceFilePath, Path.Combine(this.saveDirectory, targetFileName + targetFileExtension)); if(this.deleteEdgeCacheFileCheckBox.Checked) { File.Delete(sourceFilePath); } } #endregion } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 현재 사용자명 구하기 - GetCurrentUserName() /// <summary> /// 현재 사용자명 구하기 /// </summary> /// <returns>현재 사용자명</returns> public string GetCurrentUserName() { return WindowsIdentity.GetCurrent().Name.Split('\\')[1]; } #endregion #region 파일 확장자 딕셔너리 설정하기 - SetFileExtensionDictionary(sourceDirectory, fileExtensionList) /// <summary> /// 파일 확장자 딕셔너리 설정하기 /// </summary> /// <param name="sourceDirectory">소스 딕셔너리</param> /// <param name="fileExtensionList">파일 확장자 리스트</param> private void SetFileExtensionDictionary(Dictionary<string, string> sourceDirectory, string fileExtensionList) { sourceDirectory.Clear(); if(string.IsNullOrWhiteSpace(fileExtensionList)) { return; } string[] fileExtensionArray = fileExtensionList.Split(';'); foreach(string fileExtension in fileExtensionArray) { sourceDirectory.Add(fileExtension, fileExtension); } } #endregion #region 오른쪽 문자열 구하기 - GetRightString(source, length) /// <summary> /// 오른쪽 문자열 구하기 /// </summary> /// <param name="source">소스 문자열</param> /// <param name="length">길이</param> /// <returns>오른쪽 문자열</returns> public string GetRightString(string source, int length) { if(source.Length > length) { return source.Substring(source.Length - length, length); } return source; } #endregion } } |
ExtraceEdgeImage.zip
ExtractEdgeImageBinary.zip