BatchGuy.App.CreateEAC3ToBatchForm.IsADirectory C# (CSharp) Method

IsADirectory() private method

private IsADirectory ( string folder ) : bool
folder string
return bool
        private bool IsADirectory(string folder)
        {
            if (Directory.Exists(folder))
                return true;
            else
                return false;
        }
CreateEAC3ToBatchForm