C#

(C#) 다운로드 폴더 경로 가져오기

코딩ABC 2023. 6. 25. 07:48
반응형

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);
        }
    }
}

다운로드 폴더 경로 가져오기

 

반응형