private static void CreateAllDirectoriesInPath()

in src/Azure.AppService.Tunnel/IO/FileDownloader.cs [36:41]


    private static void CreateAllDirectoriesInPath(string path)
    {
        var directory = Path.GetDirectoryName(path);
        if (directory is null) throw new ArgumentException("Path to file should not be null");
        Directory.CreateDirectory(directory);
    }