Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.com
- using System;
- using System.Diagnostics;
- namespace Receta.CSharp.R0505
- {
- public class TamanioDirectorio
- {
- public static void Main()
- {
- Console.WriteLine(Environment.NewLine);
- // Especificamos la ruta del archivo a consultar, en este caso el
- // el archivo `csc.exe`:
- FileVersionInfo cscVerInfo = FileVersionInfo.GetVersionInfo(
- @"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe");
- // Muestra en la salida estándar información
- // de versionamiento:
- Console.WriteLine("Nombre archivo: {0}.", cscVerInfo.FileName);
- Console.WriteLine("Nombre producto: {0}.", cscVerInfo.ProductName);
- Console.WriteLine("Versión de producto: {0}.", cscVerInfo.ProductVersion);
- Console.WriteLine("Nombre compañía: {0}.", cscVerInfo.CompanyName);
- Console.WriteLine(Environment.NewLine);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement