mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
5 lines
280 B
Text
5 lines
280 B
Text
' Simple VBScript to open the 0 A.D. logs folder
|
|
' the path varies on different versions of Windows
|
|
Set objShell = CreateObject("Shell.Application")
|
|
' 0x1C is equivalent to the ssfLOCALAPPDATA constant in VB
|
|
objShell.Explore objShell.Namespace(&H1C&).Self.Path & "\0ad\logs"
|