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
When a junction is created in the $APP Base directory on windows
eg. mklink /J C:\Users\<user>\AppData\Roaming\<identifier>\TestFolder C:\Dev\TestFolder)
The folder is accessible together with all files and folders inside using fs if read from the root directory const entries = await readDir('', { dir: BaseDirectory.App, recursive: true });
But when trying to read the folder directly using const entries = await readDir('TestFolder', { dir: BaseDirectory.App, recursive: true });
it fails with an error Uncaught (in promise) path not allowed on the configured scope: C:\Users\<user>\AppData\Roaming\<identifier>\TestFolder
Reproduction
Create Junction in $APP directory
Try to access that directory recursively with readDir with empty dir parameter
Folder and its contents can be read
Try to access that directory again with readDir but with the name of the directory as dir parameter
Expected behavior
I would expect to either not be able to access the folder at all, or be able to access it directly as well if it is accessible from root recursively.
Describe the bug
When a junction is created in the $APP Base directory on windows
eg.
mklink /J C:\Users\<user>\AppData\Roaming\<identifier>\TestFolder C:\Dev\TestFolder
)The folder is accessible together with all files and folders inside using fs if read from the root directory
const entries = await readDir('', { dir: BaseDirectory.App, recursive: true });
But when trying to read the folder directly using
const entries = await readDir('TestFolder', { dir: BaseDirectory.App, recursive: true });
it fails with an error
Uncaught (in promise) path not allowed on the configured scope: C:\Users\<user>\AppData\Roaming\<identifier>\TestFolder
Reproduction
Expected behavior
I would expect to either not be able to access the folder at all, or be able to access it directly as well if it is accessible from root recursively.
Platform and versions
Stack trace
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: