mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-23 14:05:08 +00:00
512854e30c
This was SVN commit r12068.
6 lines
280 B
Plaintext
6 lines
280 B
Plaintext
' 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"
|