Link
- Scoop's Persist mechanism can only persist data within the app's installation directory.
- However, most modern apps store their data in Windows standard directories, not the installation directory.
C:\Users\<username>\AppData\Roaming\xxxC:\Users\<username>\AppData\Local\xxxC:\Users\<username>\Documents\xxxC:\Users\<username>\xxx- ...
- For such apps that cannot use Persist, abyss will use the unified Link Rule for data persistence.
New-Item -ItemType JunctionNew-Item -ItemType SymbolicLink
- Once the link is created, the app reads and writes data at the original location, but actually operates on the data in Scoop's persistence directory.