반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 파이썬
- hive
- Apache
- gas
- matplotlib
- Redshift
- Excel
- list
- Python
- Tkinter
- PostgreSQL
- dataframe
- google apps script
- Mac
- Google Spreadsheet
- string
- GIT
- PANDAS
- Google Excel
- Java
- math
- Kotlin
- Github
- c#
- PySpark
- SQL
- django
- array
- numpy
Archives
- Today
- Total
달나라 노트
C# : CurrentDirectory (현재 directory) 본문
728x90
반응형
System.Environment.CurrentDirectory 를 이용하면 현재 코드(또는 C# 코드로 생성된 exe파일)이 실행되는 directory를 얻을 수 있습니다.
using System;
class MyProgram
{
public static void Main()
{
Console.WriteLine(System.Environment.CurrentDirectory.ToString());
}
}
-- Result
C:\Users\Documents\code_dir\cs\Project1\Project1\bin\Debug
System.Environment.CurrentDirectory를 사용하면 위처럼 현재 코드가 실행되는 Directory 정보를 얻을 수 있습니다.
Visual Studio에서 C# 프로젝트를 생성하고 코드를 실행하면 보통 이것은 Project Directory의 /bin/Debug에 존재하는 (Project명).exe 파일이 실행되는 것입니다.
따라서 대부분 위같은 경로가 return될겁니다.
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : System.IO.Directory.GetFiles (디렉토리 내의 파일 list 얻기) (0) | 2022.05.09 |
---|---|
C# : C# 코드를 exe 파일로 만들기. exe 파일 생성. 실행 파일 생성 (2) | 2022.04.21 |
C# : PadLeft, PadRight (lpad, rpad) (0) | 2022.04.21 |
C# : WindowsMediaPlayer (C# mp3 재생, mp3) (0) | 2022.04.20 |
C# : SoundPlayer (C#에서 .wav 파일 재생) (0) | 2022.04.20 |
Comments