Changes between Initial Version and Version 1 of GameDataPaths


Ignore:
Timestamp:
May 26, 2012, 1:08:19 AM (12 years ago)
Author:
historic_bruno
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GameDataPaths

    v1 v1  
     1This page describes the paths for data created during the game. For the layout of data bundled with the game, see [wiki:Finding_Your_Way_Around Finding Your Way Around].
     2
     3== Windows ==
     4
     5=== XP/2000 ===
     6
     7For saved games and screenshots:
     8 * `C:\Documents and Settings\JohnDoe\My Documents\My Games\0ad\`
     9 * Just view "My Documents" in Explorer.
     10For logs and cache:
     11 * `C:\Documents and Settings\JohnDoe\Local Settings\Application Data\0ad\`
     12For user config and possibly other user data:
     13 * `C:\Documents and Settings\JohnDoe\Application Data\0ad\`
     14 * You can use the `%appdata%` variable as a shortcut: `%appdata%\0ad\`
     15
     16'''Note:''' These paths are localized, for instance in German the logs path is `C:\Dokumente und Einstellungen\Max Mustermann\Lokale Einstellunge\Anwendungsdaten\0ad\logs`.
     17
     18=== Vista or newer ===
     19
     20For saved games and screenshots:
     21 * `C:\Users\JohnDoe\Documents\My Games\0ad\`
     22For logs and cache:
     23 * `C:\Users\JohnDoe\AppData\Local\0ad\`
     24 * You can use the `%localappdata%` variable as a shortcut: `%localappdata%\0ad\`
     25For user config and possibly other user data:
     26 * `C:\Users\JohnDoe\AppData\Roaming\0ad\`
     27 * You can use the `%appdata%` variable as a shortcut: `%appdata%\0ad\`
     28
     29-----
     30== OS X ==
     31
     32For non-cache data created during the game:
     33 * `~/Library/Application\ Support/0ad/`
     34For cached data:
     35 * `~/Library/Caches/0ad/`
     36
     37'''Note:''' "~" is a shorthand for the current user directory.
     38
     39-----
     40== Linux ==
     41
     42Standard [http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html XDG base directories] are used.
     43
     44For most data created during the game:
     45 * `~/.local/share/0ad/`
     46For user config and logs:
     47 * `~/.config/0ad/`
     48For cached data:
     49 * `~/.cache/0ad/`
     50
     51'''Note:''' "~" is a shorthand for the current user directory.