mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
Fixes #6846 Differential Revision: https://code.wildfiregames.com/D5185 This was SVN commit r27965.
5 lines
275 B
Text
5 lines
275 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"
|