File Stream C#

#region License and Copyright
/* -------------------------------------------------------------------------
 * Dotnet Commons IO
 *
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License 
 * for more details. 
 *
 * You should have received a copy of the GNU Lesser General Public License 
 * along with this library; if not, write to the 
 * 
 * Free Software Foundation, Inc., 
 * 59 Temple Place, 
 * Suite 330, 
 * Boston, 
 * MA 02111-1307 
 * USA 
 * 
 * -------------------------------------------------------------------------
 */
#endregion
using System;
using System.Collections;
using System.Globalization;
using System.IO;
namespace Dotnet.Commons.IO
{
    class MainClass{
  
    /// The number of bytes in a kilobyte.
    public const long ONE_KB = 1024;
    /// The number of bytes in a megabyte.
    public const long ONE_MB = ONE_KB * ONE_KB;
    ///  The number of bytes in a gigabyte.
    public const long ONE_GB = ONE_KB * ONE_MB;
    /// --------------------------------------------------------------------------
    /// 
    /// Returns a human-readable version of the file size (original is in bytes).
    /// 

    /// The number of bytes.
    /// A human-readable display value (includes units).
    /// --------------------------------------------------------------------------
    public static string DisplaySize(long size) 
    {
      string displaySize;
      if (size / ONE_GB > 0) 
      {
        displaySize = Convert.ToString(size / ONE_GB) + " GB";
      } 
      else if (size / ONE_MB > 0) 
      {
        displaySize = Convert.ToString(size / ONE_MB) + " MB";
      } 
      else if (size / ONE_KB > 0) 
      {
        displaySize = Convert.ToString(size / ONE_KB) + " KB";
      } 
      else 
      {
        displaySize = Convert.ToString(size) + " bytes";
      }
      return displaySize;
    }
   }
}