Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.com
- using System;
- using System.IO;
- namespace Receta.CSharp.R0516
- {
- public class UsoDriveInfo
- {
- public static void Main()
- {
- Console.WriteLine ();
- // Obtención de las unidades actuales en el sistema:
- DriveInfo[] unidades = DriveInfo.GetDrives();
- // Enlistamiento:
- foreach (DriveInfo unidad in unidades)
- {
- if (unidad.IsReady == true)
- {
- Console.WriteLine("Letra unidad: {0}", unidad.Name);
- Console.WriteLine("Formato unidad: {0}", unidad.DriveFormat);
- Console.WriteLine("Nombre volumen: {0}", unidad.VolumeLabel);
- Console.WriteLine("Espacio libre: {0}", unidad.AvailableFreeSpace.ToString());
- Console.WriteLine ();
- }
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement