Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get get name of the most recent (by creation time) directory in a Windows script?

I need some help in getting the name of the most recent directory in a Windows script.

I have found some information on getting the most recent file which works but I cannot get this to work on directories.

For example, here is my directory:

drwxr-xr-x 2 usrpm Domain Users 0 Jun 29 10:34 _200903_V20
drwxr-xr-x 2 usrpm Domain Users 0 Jun 29 10:35 _200904_V21
drwxr-xr-x 2 usrpm Domain Users 0 Jun 29 10:36 _200905_V22
drwxr-xr-x 2 usrpm Domain Users 0 Jun 29 10:38 _200906_V23

I need my script to return me the most recent directory (V23). I will then cd into that directory and copy a file out of it.

like image 532
Steve Avatar asked Dec 14 '22 01:12

Steve


1 Answers

Here is a link to two scripts that find the most recent file. I think the second one already does exactly what you want, but you can modify one of them to do what you need, I'm pretty sure. I just googled "find most recent file dos batch file" and found it immediately.

Source link.

Edited to add a script that works with directories:

@echo off
for /f "delims=" %%x in ('dir /od /b *.*') do set recent=%%x
echo %recent%

Output:

C:\> recent.bat
recent.bat
C:\> mkdir newdir

C:\> recent.bat
newdir

Looks like it works here.

like image 66
Carl Norum Avatar answered May 09 '23 11:05

Carl Norum