2009-02-11 15:07:42 +00:00
|
|
|
using GLib;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace TestGio
|
|
|
|
{
|
|
|
|
public class TestVolume
|
|
|
|
{
|
|
|
|
static void Main (string[] args)
|
|
|
|
{
|
|
|
|
GLib.GType.Init ();
|
|
|
|
VolumeMonitor monitor = VolumeMonitor.Default;
|
|
|
|
Console.WriteLine ("Volumes:");
|
|
|
|
foreach (Volume v in monitor.Volumes)
|
2009-02-11 15:07:56 +00:00
|
|
|
Console.WriteLine ("\t{0}", v.Name);
|
2009-02-11 15:07:42 +00:00
|
|
|
Console.WriteLine ("\nMounts:");
|
|
|
|
foreach (Mount m in monitor.Mounts) {
|
|
|
|
Console.WriteLine ("\tName:{0}, UUID:{1}, root:{2}, CanUnmount: {3}", m.Name, m.Uuid, m.Root, m.CanUnmount);
|
|
|
|
Volume v = m.Volume;
|
|
|
|
if (v != null)
|
|
|
|
Console.WriteLine ("\t\tVolume:{0}", v.Name);
|
|
|
|
Drive d = m.Drive;
|
|
|
|
if (d != null)
|
|
|
|
Console.WriteLine ("\t\tDrive:{0}", d.Name);
|
|
|
|
}
|
|
|
|
Console.WriteLine ("\nConnectedDrives:");
|
2009-02-11 15:07:56 +00:00
|
|
|
foreach (Drive d in monitor.ConnectedDrives)
|
|
|
|
Console.WriteLine ("\t{0}, HasVolumes:{1}", d.Name, d.HasVolumes);
|
2009-02-11 15:07:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|