[C#] 특정 경로(웹서버)에 저장되어 있는 엑셀 파일 양식 불러오기 1. 먼저 Localhost영역의 디렉토리를 검색한다. - 검색한 디렉토리(directory)에 엑셀 양식을 다운로드할 예정이다. // 파일이 저장될 경로/디렉토리 string filePath = "C:\\디렉토리\\"; string fileName = "파일명_"+this.GetType().Name + ".xls"; // 해당 디렉토리가 없으면 디렉토리를 생성한다. if (!System.IO.Directory.Exists(filePath)) { System.IO.Directory.CreateDirectory(filePath); MessageBox.Show(filePath + " 디렉토리 생성"); } 2. 특정 경로에서 엑셀 양식을 ..