Gets the extension without the dot : File Name « File Stream « C# / C Sharp






Gets the extension without the dot

      
// //------------------------------------------------------------------------------
// // <copyright file="" company="Dascoba Development">
// //  Copyright  Dascoba Development 2010
// // </copyright>
// //------------------------------------------------------------------------------
namespace Dascoba.Umb.FileManager.Support
{
    using System;
    using System.IO;
    using System.Linq;

    public static class Util
    {
        /// <summary>
        ///   Gets the extension without the dot
        /// </summary>
        /// <param name = "fileName">Name of the file.</param>
        /// <returns></returns>
        internal static string GetSimpleExtension(string fileName)
        {
            return Path.GetExtension(fileName).Replace(".", "");
        }

    }
}

   
    
    
    
    
    
  








Related examples in the same category

1.Query file name with Linq
2.Clean File Name
3.Retrieves the date from the beginning of the WinSat filename and creates a datetime object from it
4.Get File Name
5.Convert To Legal File Name
6.Get File Name From Path
7.Extracts a path part of a full path filename, searching for the last directory separator or column.
8.Creates a relative path from absolute pathfilename and a reference path.
9.Get file extension
10.Restrict a list of files to valid extensions only
11.Get Content Type by Extension
12.Get Full Path Without Extension
13.Full Name Without Extension
14.Name Without Extension
15.ImageFormat to Extension
16.Get Image Type Extension