Example #1
0
        /// <summary>
        /// Normalizes the directory.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <returns></returns>
        protected static string NormalizeDirectory(string value)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }

            return(QQnPath.NormalizeUnixPath(value, true));
        }