; Author: jgpaiva ; ; Script Function: ; Open the folder inside the folder passed as argument that has today's ; name ; #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. ;#notrayicon if 0 <> 1 { msgbox,Please pass the parent folder as argument! exitapp } folder = %1% date := A_now loop { datef := FormatTime,datef,%date%,dd-MM-yyyy ifExist,%folder%\%datef% { run,%folder%\%datef% exitapp } Envadd,date,-1,Days }