C#에서 다운로드 폴더의 경로 가져오기 using System; using System.IO; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { string path = Path.GetDirectoryName(Environment.GetFolderPath(Environment.SpecialFolder.Personal)); path = Path.Combine(path, "Downloads"); Console.WriteLine("{0}", path); } } }