Catel.IO.Path.GetDirectoryName C# (CSharp) 메소드

GetDirectoryName() 공개 정적인 메소드

Gets the name of the directory.
The is null or whitespace.
public static GetDirectoryName ( string path ) : string
path string The path to get the directory name from.
리턴 string
        public static string GetDirectoryName(string path)
        {
            Argument.IsNotNullOrWhitespace("path", path);

            return GetParentDirectory(path);
        }