Windows
Bat - Path
doublerabbits
2023. 7. 17. 14:40
● 파일 경로 출력
@echo on
set FullPath=%0
set DriveName=%~d0
set DirPath=%~p0
set FileName=%~n0
set ExtName=%~x0
set DriveAndDirPath=%~dp0
set CurrentPath=%cd%
pause