diff options
author | Matthew Zipkin <pinheadmz@gmail.com> | 2023-02-08 13:23:28 -0500 |
---|---|---|
committer | Matthew Zipkin <pinheadmz@gmail.com> | 2024-04-30 11:03:04 -0400 |
commit | 855dd8d592c951a2b3239867ffbf66bb8677d470 (patch) | |
tree | bef215e9b397d415de0134670644d5bb709b3ad6 /doc | |
parent | 312f54278fd972ba3557c6a5b805fd244a063959 (diff) |
system: use %LOCALAPPDATA% as default datadir on windows
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bitcoin-conf.md | 2 | ||||
-rw-r--r-- | doc/files.md | 2 | ||||
-rw-r--r-- | doc/managing-wallets.md | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/bitcoin-conf.md b/doc/bitcoin-conf.md index 1ebfb4c1de..76711d0e7d 100644 --- a/doc/bitcoin-conf.md +++ b/doc/bitcoin-conf.md @@ -59,7 +59,7 @@ The `includeconf=<file>` option in the `bitcoin.conf` file can be used to includ Operating System | Data Directory | Example Path -- | -- | -- -Windows | `%APPDATA%\Bitcoin\` | `C:\Users\username\AppData\Roaming\Bitcoin\bitcoin.conf` +Windows | `%LOCALAPPDATA%\Bitcoin\` | `C:\Users\username\AppData\Local\Bitcoin\bitcoin.conf` Linux | `$HOME/.bitcoin/` | `/home/username/.bitcoin/bitcoin.conf` macOS | `$HOME/Library/Application Support/Bitcoin/` | `/Users/username/Library/Application Support/Bitcoin/bitcoin.conf` diff --git a/doc/files.md b/doc/files.md index f88d3f91a1..03e52f02c9 100644 --- a/doc/files.md +++ b/doc/files.md @@ -28,7 +28,7 @@ Platform | Data directory path ---------|-------------------- Linux | `$HOME/.bitcoin/` macOS | `$HOME/Library/Application Support/Bitcoin/` -Windows | `%APPDATA%\Bitcoin\` <sup>[\[1\]](#note1)</sup> +Windows | `%LOCALAPPDATA%\Bitcoin\` <sup>[\[1\]](#note1)</sup> 2. A custom data directory path can be specified with the `-datadir` option. diff --git a/doc/managing-wallets.md b/doc/managing-wallets.md index 22e006c963..e561e15427 100644 --- a/doc/managing-wallets.md +++ b/doc/managing-wallets.md @@ -20,7 +20,7 @@ By default, wallets are created in the `wallets` folder of the data directory, w | Operating System | Default wallet directory | | -----------------|:------------------------------------------------------------| | Linux | `/home/<user>/.bitcoin/wallets` | -| Windows | `C:\Users\<user>\AppData\Roaming\Bitcoin\wallets` | +| Windows | `C:\Users\<user>\AppData\Local\Bitcoin\wallets` | | macOS | `/Users/<user>/Library/Application Support/Bitcoin/wallets` | ### 1.2 Encrypting the Wallet |