You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2017. It is now read-only.
A fully specified (rooted) path is not accounted for in EnsureFolderExists on WindowsUWP (which uses the WindowsCommon FileStore plugin). As a result the full path is created as a series of subdirectories off the rootFolder.
For example:
rootFolder = c:\path\to\root
folderToCheck = c:\path\to\root\folder\to\check
EnsureFolderExists(folderToCheck)
--> expected result => c:\path\to\root\folder\to\check
--> actual result => c:\path\to\root\path\to\root\folder\to\check
I have fixed this in a local branch.
The text was updated successfully, but these errors were encountered:
A fully specified (rooted) path is not accounted for in EnsureFolderExists on WindowsUWP (which uses the WindowsCommon FileStore plugin). As a result the full path is created as a series of subdirectories off the rootFolder.
For example:
rootFolder = c:\path\to\root
folderToCheck = c:\path\to\root\folder\to\check
EnsureFolderExists(folderToCheck)
--> expected result => c:\path\to\root\folder\to\check
--> actual result => c:\path\to\root\path\to\root\folder\to\check
I have fixed this in a local branch.
The text was updated successfully, but these errors were encountered: