mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Merge pull request #123 from Ibrahim-Islam/master
Fixes long path issue in unix systems
Former-commit-id: bc92e54c99
This commit is contained in:
commit
4624378d0e
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ static class PipeHelpers
|
|||
{
|
||||
static readonly string PipePrefix = Path.Combine(Path.GetTempPath(), "CoreFxPipe_");
|
||||
|
||||
public static string GetUnqiuePipeName() => "FFMpegCore_" + Guid.NewGuid();
|
||||
public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(0, 5)}";
|
||||
|
||||
public static string GetPipePath(string pipeName)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue