Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 53925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:08:23+00:00 2026-05-10T17:08:23+00:00

Is there any easy way to create a class that uses IFormatProvider that writes

  • 0

Is there any easy way to create a class that uses IFormatProvider that writes out a user-friendly file-size?

public static string GetFileSizeString(string filePath) {     FileInfo info = new FileInfo(@'c:\windows\notepad.exe');     long size = info.Length;     string sizeString = size.ToString(FileSizeFormatProvider); // This is where the class does its magic... } 

It should result in strings formatted something like ‘2,5 MB‘, ‘3,9 GB‘, ‘670 bytes‘ and so on.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:08:23+00:00Added an answer on May 10, 2026 at 5:08 pm

    I use this one, I get it from the web

    public class FileSizeFormatProvider : IFormatProvider, ICustomFormatter {     public object GetFormat(Type formatType)     {         if (formatType == typeof(ICustomFormatter)) return this;         return null;     }      private const string fileSizeFormat = "fs";     private const Decimal OneKiloByte = 1024M;     private const Decimal OneMegaByte = OneKiloByte * 1024M;     private const Decimal OneGigaByte = OneMegaByte * 1024M;      public string Format(string format, object arg, IFormatProvider formatProvider)     {             if (format == null || !format.StartsWith(fileSizeFormat))             {                 return defaultFormat(format, arg, formatProvider);             }          if (arg is string)             {                 return defaultFormat(format, arg, formatProvider);             }          Decimal size;          try             {                 size = Convert.ToDecimal(arg);             }             catch (InvalidCastException)             {                 return defaultFormat(format, arg, formatProvider);             }              string suffix;         if (size > OneGigaByte)         {             size /= OneGigaByte;             suffix = "GB";         }         else if (size > OneMegaByte)         {             size /= OneMegaByte;             suffix = "MB";         }         else if (size > OneKiloByte)         {             size /= OneKiloByte;             suffix = "kB";         }         else         {             suffix = " B";         }          string precision = format.Substring(2);         if (String.IsNullOrEmpty(precision)) precision = "2";         return String.Format("{0:N" + precision + "}{1}", size, suffix);      }      private static string defaultFormat(string format, object arg, IFormatProvider formatProvider)     {         IFormattable formattableArg = arg as IFormattable;         if (formattableArg != null)         {             return formattableArg.ToString(format, formatProvider);         }         return arg.ToString();     }  } 

    an example of use would be:

    Console.WriteLine(String.Format(new FileSizeFormatProvider(), "File size: {0:fs}", 100)); Console.WriteLine(String.Format(new FileSizeFormatProvider(), "File size: {0:fs}", 10000)); 

    Credits for http://flimflan.com/blog/FileSizeFormatProvider.aspx

    There is a problem with ToString(), it’s expecting a NumberFormatInfo type that implements IFormatProvider but the NumberFormatInfo class is sealed 🙁

    If you’re using C# 3.0 you can use an extension method to get the result you want:

    public static class ExtensionMethods {     public static string ToFileSize(this long l)     {         return String.Format(new FileSizeFormatProvider(), "{0:fs}", l);     } } 

    You can use it like this.

    long l = 100000000; Console.WriteLine(l.ToFileSize()); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any easy way to create an acronym from a string? First_name Middle_name
Is there any easy way to add a using statement to every class I
Is there any easy way to retrieve table creation DDL from Microsoft Access (2007)
Is there any easy way to explicitly make an already threaded application utilise a
Is there any easy way to access the SVN repository revision number and store
I have a workbook with 20 different pivot tables. Is there any easy way
Is there any easy/general way to clean an XML based data source prior to
Is there currently any easy way to set up a YAWS web server in
I would like to know if there is any easy way to print multiple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.