birdofpreyru / react-native-fs

File system access for React Native
https://dr.pogodin.studio/docs/react-native-file-system
Other
160 stars 12 forks source link

Android: Close input and output streams #11

Closed raphaelheinz closed 11 months ago

raphaelheinz commented 11 months ago

This pull request adds functionality to close streams in Android as discussed in #10.

Previously, the streams were often not closed at function exit, which led to system warnings. If possible, try-with-resources is used. In more complex situations, close() is called manually in the finally block.