-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ios][modules-core] Fix getExternalPathPermissions returns no read/write permissions #30540
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ad/write permissions Function getExternalPathPermissions should use URL.path instead of URL.absoluteString to retrieve permissions using FileManager. For details see https://www.jessesquires.com/blog/2023/08/17/swift-url-absolutestring-path/
expo-bot
added
bot: passed checks
ExpoBot has nothing to complain about
and removed
bot: suggestions
ExpoBot has some suggestions
labels
Jul 21, 2024
tsapeta
approved these changes
Jul 22, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks for your contribution and adding a test! 🙏
tsapeta
changed the title
[ios][expo-modules-core] Fix getExternalPathPermissions returns no read/write permissions
[ios][modules-core] Fix getExternalPathPermissions returns no read/write permissions
Jul 22, 2024
3 tasks
vonovak
pushed a commit
that referenced
this pull request
Jul 25, 2024
# Why Test introduced by this PR [#30540](#30540) fails on Android because `bundleDirectory` on Android has different structure and protocol. # How Enabled the test only for iOS platform. # Test Plan Run `FileSystem` tests using `bare-expo`. # Checklist - [x] Documentation is up to date to reflect these changes (eg: https://docs.expo.dev and README.md). - [x] Conforms with the [Documentation Writing Style Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md) - [x] This diff will work correctly for `npx expo prebuild` & EAS Build (eg: updated a module plugin).
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bot: passed checks
ExpoBot has nothing to complain about
published
Changes from the PR have been published to npm
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Function getExternalPathPermissions should use
URL.path
instead ofURL.absoluteString
to retrieve permissions using FileManager.For details see https://www.jessesquires.com/blog/2023/08/17/swift-url-absolutestring-path/
Why
Functions getPathPermissions, getExternalPathPermissions return no read/write permissions for any file
outside of "internal" directories: [cachesDirectory, documentDirectory, applicationSupportDirectory]
As the result FileSystem.copyAsync function throws an exception when attempting to copy asset files or files from the bundle directory.
How
Replaced
URL.absoluteString
withURL.path
.Test Plan
Use
FileSystem.copyAsync
method to copy any file from assets or bundle directories to a document directory.See a test added to
test-suite/tests/FileSystem.js
by this PR.Checklist
npx expo prebuild
& EAS Build (eg: updated a module plugin).