Skip to content

Instantly share code, notes, and snippets.

@jclement
Created December 5, 2012 22:53
Show Gist options
  • Save jclement/4220241 to your computer and use it in GitHub Desktop.
Save jclement/4220241 to your computer and use it in GitHub Desktop.
Return latest folder in a directory
@echo off
for /f "delims=" %%x in ('dir /od /b \\server\dir\*.*') do set recent=%%x
echo %recent%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment