Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. FOR /R "N:/somewhere/far/away/" %%A IN (.) DO (
  2. Pushd %%A
  3. Echo now in %%A
  4. )
  5.  
  6. @echo off
  7. FOR /D /R "N:somewherefaraway" %%A IN (*) DO (
  8. Pushd "%%A"
  9. Echo now in "%%~nxA"
  10. popd
  11. )
  12.  
  13. setLocal enableDelayedExpansion
  14. FOR /R "N:/somewhere/far/away/" %%A IN (.) DO (
  15. FOR /F "delims=" %%B in ("%%~pA") do set dir=%%B
  16. Pushd %%A
  17. Echo now in !dir!
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement