using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Directory
{
class Program
{
static void Main(string[] args)
{
// 현재 디렉토리
string currentDir = Environment.CurrentDirectory;
Console.WriteLine(currentDir);
// 현재 로밍 사용자의 응용 프로그램 관련 데이터에 대한 공용 리포지토리로 사용되는 디렉토리
string appData = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
Console.WriteLine(appData);
// 바탕화면 디렉토리
string desktop = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
Console.WriteLine(desktop);
// 내문서 디렉토리
stringmyDoc = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
Console.WriteLine(myDoc);
}
}
}
'DEV > C#' 카테고리의 다른 글
크롤링으로 나라장터 검색-화면 구성 및 사전규격 (0) | 2021.08.04 |
---|---|
크롤링으로 나라장터 검색-개발환경 구축 (0) | 2021.07.27 |
크롤링으로 나라장터 검색-개요 (0) | 2021.07.27 |
C# ListView 변경,추가,삭제,수정 및 사이즈 변경하기 (0) | 2010.04.19 |
C# .NET에서 파일경로를 손쉽게 다룰수 있도록 하는 내장객체 (0) | 2010.04.19 |