매뉴얼 다운로드 기능을 구현하기 위해 프로젝트 폴더에 매뉴얼 파일을 넣어두었다.
그리고 프로그램에서 매뉴얼 다운로드를 할 경우 프로젝트 폴더 안에 있는 매뉴얼을 여는 것이 아닌
다운로드 폴더에 다운로드를 한 뒤에 열고자 한다.
다운로드를 하기 위해 사용해야 할 것은 ? File.Copy
try
{
string sourcePath = "path/to/your/Comprehensive Economic Index_Manual.pdf"; // Replace with the actual path
string downloadsFolder = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + @"\Downloads";
string destPath = Path.Combine(downloadsFolder, "Comprehensive Economic Index_Manual.pdf");
File.Copy(sourcePath, destPath, true); // Set to 'true' to overwrite if the file already exists
// Optionally, if you want to inform the user
MessageBox.Show("File downloaded to " + destPath);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.Message);
MessageBox.Show("Error in downloading the file: " + ex.Message);
}
'C#' 카테고리의 다른 글
[C#] 문자열을 숫자로 변환 (0) | 2024.05.23 |
---|---|
[C#] 메인폼에서 다른폼 열기 (0) | 2024.04.26 |
[C#] 버튼 일괄 숨기기 / 보이기 (0) | 2023.11.23 |