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
public string FullFileName2 { get { return @"\\ps-nas\Temp\products\TestU\testImage.jpg"; } } // --> this works
public string FullFileName2 { get { return @"\\ps-nas\Temp\products\TestÜ\testImage.jpg"; } } // --> this does not work
Expected behavior
german umlauts in filenames should work like in dotnet 8.
Actual behavior
Inner Exception 1:
DirectoryNotFoundException: Could not find a part of the path '\\ps-nas\temp\products\testü\testimage.jpg\Temp\products\TestÜ\testImage.jpg'.
the Image class does not use the provided path an appends something weird. --> the modified file name does not exist --> Exception.
wrong filename:
\\ps-nas\temp\products\testü\testimage.jpg\Temp\products\TestÜ\testImage.jpg
should be:
\\ps-nas\temp\products\testü\testimage.jpg
Description
when using filenames on an UNC network share with german umlauts (ü,ö,ä) an Exception is thrown.
Reproduction Steps
use 2 files on unc network path:
WPF Code: (Windows Platform)
ViewModel/Model Code:
Expected behavior
german umlauts in filenames should work like in dotnet 8.
Actual behavior
the Image class does not use the provided path an appends something weird. --> the modified file name does not exist --> Exception.
Regression?
this bug does not occur in dotnet 8
Known Workarounds
No response
Configuration
dotnet 9.0.0, Windows 11 24H2,
Other information
No response
The text was updated successfully, but these errors were encountered: