Description
Creating an archive of a folder (in blazor), which contains a named pipe in DotNet 6.0 via the ZipFile Class causes the program to block indefinitely long, without any kind of exception thrown.
- Create a Named Pipe in a Linux distribution with
mkfifo (for me this happened while running my dotnet application inside a docker conatiner)
- Try to compress the directory containing the named pipe with
ZipFile.CreateFromDirectory inside a Blazor-Server Service
Configuration
- .NETCore 6.0.0
- Hosted Blazor Webassembly (
dotnet new blazorwasm -ho)
Other information
An Exception is thrown when I try to ZIP the same directory inside a simple Dotnet Console Application.
Description
Creating an archive of a folder (in blazor), which contains a named pipe in DotNet 6.0 via the ZipFile Class causes the program to block indefinitely long, without any kind of exception thrown.
mkfifo(for me this happened while running my dotnet application inside a docker conatiner)ZipFile.CreateFromDirectoryinside a Blazor-Server ServiceConfiguration
dotnet new blazorwasm -ho)Other information
An Exception is thrown when I try to ZIP the same directory inside a simple Dotnet Console Application.