This page shows where the data is stored on various platforms, but not on windows. Where does CouchDB Lite create the directory and files for windows?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
The
Manager
object contains a path to a root directory where databases are stored (each db is put inside a sub directory) and theDatabase
object contains a path to the sub directory.The default root directory appears to be:
C:\Users\<USERNAME>\AppData\Local
and databases are in sub directories such astestdb2.cblite2
where the first part of the name is the name of the database you gave it in your code.