Rank: Newbie Groups: Member
Joined: 10/9/2017 Posts: 7
|
Can we specify where your product reads\writes it's cache to\from?
Like changing: C:\Users\myUserNameGoesHere\AppData\Local\Temp\eo.webbrowser.cache.18.0.9.0.1.1
To maybe: C:\temp\eo.webbrowser.cache.18.0.9.0.1.1
thx much!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,258
|
Hi, You can change it through this property: https://www.essentialobjects.com/doc/eo.webengine.engineoptions.cachepath.aspxIf you do not use additional engines, you would use it this way:
Code: C#
EO.WebBrowser.Runtime.DefaultEngineOptions.CachePath = cache_path;
Make sure you set this property before you creating any WebViews. Once the WebView has been created, you won't be able to change the cache path. Thanks
|