﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
336	Add DirGetTime function	fherrero@…		"I think a good idea add DirGetTime function.
I need this and ""simulated"" by this code:

Func DirGetTime ($path, $option = 0, $format = 0)
	Local $FSO = ObjCreate(""Scripting.FileSystemObject"")
	Local $Folder = $FSO.GetFolder($path)
	Local $date
	Switch $option
		Case 0
			$date = $Folder.DateLastModified()
		Case 1
			$date = $Folder.DateCreated()
		Case Else
			$date = $Folder.DateLastAccessed()
	EndSwitch
	If $format = 0 Then
		$date = StringRegExp($date, ""(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})"", 1)
	EndIf
	Return $date
EndFunc
"	Feature Request	closed		AutoIt		None	Rejected		
