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
The readDir method in ReactNativeModule.cpp does not correctly handle directory paths that contain special characters such as ö, ä, ü. This causes the method to fail when attempting to read directories with such characters in their paths.
Ensure that the methods correctly handle special characters by using std::wstring for directory paths and making necessary adjustments to the method calls.
The text was updated successfully, but these errors were encountered:
AchillesChristianPrinz
changed the title
readDir and probably other methods don't handle special characters in directory pathsreadDir and probably other methods don't handle special characters in directory paths
Nov 10, 2024
AchillesChristianPrinz
changed the title
readDir and probably other methods don't handle special characters in directory pathsreadDir() and probably other methods don't handle special characters in directory paths
Nov 10, 2024
birdofpreyru
changed the title
readDir() and probably other methods don't handle special characters in directory paths
[Windows] readDir() and probably other methods don't handle special characters in directory paths
Nov 16, 2024
The
readDir
method inReactNativeModule.cpp
does not correctly handle directory paths that contain special characters such as ö, ä, ü. This causes the method to fail when attempting to read directories with such characters in their paths.react-native-fs/windows/ReactNativeFs/ReactNativeModule.cpp
Line 491 in 5df8019
Suggested fix
Ensure that the methods correctly handle special characters by using
std::wstring
for directory paths and making necessary adjustments to the method calls.The text was updated successfully, but these errors were encountered: