Biz.Services.DownloadService.CreateFoler C# (CSharp) Method

CreateFoler() private method

private CreateFoler ( string path ) : void
path string
return void
        private void CreateFoler(string path)
        {
            if (Directory.Exists(Path.GetDirectoryName(path)))
            {
            }
            else
            {
                Directory.CreateDirectory(Path.GetDirectoryName(path));
            }
        }