-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Labels
P2Issues that are not blockingIssues that are not blockingbugSomething isn't workingSomething isn't working
Description
| std::string cacheFilePath = MAT::GetAppLocalTempDirectory(); |
In a uwp app, MAT::GetAppLocalTempDirectory() returns a path like
"C:\Users\adamgor\AppData\Local\Packages\myApp_8wekyb3d8bbwe\LocalState"
However it then is appended to via cacheFilePath += tenantId;
| cacheFilePath += tenantId; |
which results in
"C:\Users\adamgor\AppData\Local\Packages\myApp_8wekyb3d8bbwe\LocalStatesomeFilename.db"
As you can see from the above result there needs to be a cacheFilePath += "/" + tenantId;
or equivalent to fix this lack of folder separation issue.
Alternatively if there is an API to do a Path::Combine, that would be even better.
In the interim, I was able to work around this by providing our own config["cacheFilePath"] override before Initialization.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P2Issues that are not blockingIssues that are not blockingbugSomething isn't workingSomething isn't working