반응형
PowerShell script 를 작성하다가 현재 실행되는 스크립트의 폴더를 확인 하는 코드 입니다.
코드는 굉장히 간단한데요~
다음과 같습니다.
$fullPathIncFileName = $MyInvocation.MyCommand.Definition # Script 파일의 full path
$currentScriptName = $MyInvocation.MyCommand.Name # Script 파일 이름
$currentExecutingPath = $fullPathIncFileName.Replace($currentScriptName, "") # Script 폴더
Write-Host $currentExecutingPath # Script 파일의 폴더 확인
주석을 붙였으니 설명은 딱히 필요 없을것 같군요.
반응형
'programming language > powershell' 카테고리의 다른 글
Powershell 현재 스크립트 파일의 디렉터리 (0) | 2014.01.20 |
---|---|
Powershell 이전 directory 로 돌아가기 CD - (2) | 2013.10.20 |
Powershell profile 적용 및 alias (2) | 2013.10.16 |
Powershell 경우의 수 조합 다 구하기(Cartesian Product) (0) | 2013.08.18 |
Powershell 지정 일 이후의 파일 백업 (0) | 2012.03.07 |
Powershell 특정 확장자 파일의 경로 다 찾기 (0) | 2011.04.01 |
Powershell 용량 작은 파일 지우기 (0) | 2011.03.06 |
powershell 을 이용한 program uninstall (0) | 2011.02.13 |
댓글