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 using String? selectedDirectory = await FilePicker.platform.getDirectoryPath(); on MacOS with the security sandbox enabled (necessary for shipping on the AppStore) the home directory is replaced by a Data folder located in ~/Library/Containers/MyAppName/Data/
This is the home environment set by the OS for the container, allowing the app to access only files in this container and selected files by the user (using FilePicker)
FilePicker is a dialog for the users that allows the user to access any file, it should not care if the app is in a sandbox environment and should display the user's home directory, not the sandbox home directory
The text was updated successfully, but these errors were encountered:
When using
String? selectedDirectory = await FilePicker.platform.getDirectoryPath();
on MacOS with the security sandbox enabled (necessary for shipping on the AppStore) the home directory is replaced by aData
folder located in~/Library/Containers/MyAppName/Data/
This is the home environment set by the OS for the container, allowing the app to access only files in this container and selected files by the user (using FilePicker)
FilePicker is a dialog for the users that allows the user to access any file, it should not care if the app is in a sandbox environment and should display the user's home directory, not the sandbox home directory
The text was updated successfully, but these errors were encountered: