Windows의 디렉토리에서 가장 큰 디렉토리로 이동 cmd를


2

나는 "게임"과 "음악"이라는 두 개의 디렉토리가 들어있는 디렉토리 안에 있는데 어느 것이 더 큰지에 따라 "게임"또는 "음악"으로 내려 가고 싶습니다.

답변:


1

방법 1 :

명령 줄 :

powershell $w1='D:\games';$w2='D:\music';$s1=(ls -Re -Fo $w1^|Measure -pr length -s).sum;$s2=(ls -Re -Fo $w2^|Measure -pr length -s).sum;if($s1 -gt $s2){explorer $w1}else{explorer $w2}

방법 2 :

MaxCD.cmd :

@ECHO OFF
SET W1=D:\games
SET W2=D:\music
powershell $w1='%W1%';$w2='%W2%';$s1=(ls -Re -Fo $w1^|Measure -pr length -s).sum;$s2=(ls -Re -Fo $w2^|Measure -pr length -s).sum;echo $s1' '$w1 $s2' '$w2`n;if($s1 -gt $s2){exit 11}else{exit 12}

ECHO ERRORLEVEL: %ERRORLEVEL%

IF "%ERRORLEVEL%" EQU "11" CD /D "%W1%" 
IF "%ERRORLEVEL%" EQU "12" CD /D "%W2%"

ECHO.
ECHO Jump directory: %CD%
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.