Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. for /d %A in (*) do @if not exist "%~fAArg*" echo %~fA
  2.  
  3. for /d /r %A in (*) do @if not exist "%~fAArg*" echo %~fA
  4.  
  5. for /d /r X:pathto %A in (*) do @if not exist "%~fAArg*" echo %~fA
  6.  
  7. for /d %A in (*) do @if exist "%~fAArg*" echo %~fA
  8. for /d /r %A in (*) do @if exist "%~fAArg*" echo %~fA
  9. for /d /r X:pathto %A in (*) do @if exist "%~fAArg*" echo %~fA
  10.  
  11. for /d %%A in (*) do @if exist "%%~fAArg*" echo %%~fA
  12. for /d /r %%A in (*) do @if exist "%%~fAArg*" echo %%~fA
  13. for /d /r X:pathto %%A in (*) do @if exist "%%~fAArg*" echo %~fA
  14.  
  15. for /d %%A in (*) do @if not exist "%%~fAArg*" echo %%~fA
  16. for /d /r %%A in (*) do @if not exist "%%~fAArg*" echo %%~fA
  17. for /d /r X:pathto %%A in (*) do @if not exist "%%~fAArg*" echo %~fA
  18.  
  19. doskey nosubdir=for /d %A in (*) do @if not exist "%~fA$**" echo %~fA
  20. doskey nosubdirrec=for /d /r %A in (*) do @if not exist "%~fA$**" echo %~fA
  21. ...
  22. cd /d x:pathto
  23. nosubdir Arg
  24. nosubdirrec Arg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement