Je souhaite accéder aux informations sur les lecteurs logiques de mon ordinateur à l'aide de C #. Comment dois-je accomplir cela? Merci!
Pour la plupart des informations, vous pouvez utiliser la classe DriveInfo .
using System;
using System.IO;
class Info {
public static void Main() {
DriveInfo[] drives = DriveInfo.GetDrives();
foreach (DriveInfo drive in drives) {
//There are more attributes you can use.
//Check the MSDN link for a complete example.
Console.WriteLine(drive.Name);
if (drive.IsReady) Console.WriteLine(drive.TotalSize);
}
}
}
Qu'en est-il des volumes montés, où vous n'avez pas de lettre de lecteur?
foreach( ManagementObject volume in
new ManagementObjectSearcher("Select * from Win32_Volume" ).Get())
{
if( volume["FreeSpace"] != null )
{
Console.WriteLine("{0} = {1} out of {2}",
volume["Name"],
ulong.Parse(volume["FreeSpace"].ToString()).ToString("#,##0"),
ulong.Parse(volume["Capacity"].ToString()).ToString("#,##0"));
}
}
Si vous souhaitez obtenir des informations sur lecteur unique/spécifique sur votre ordinateur local. Vous pouvez le faire comme suit en utilisant la classe DriveInfo :
//C Drive Path, this is useful when you are about to find a Drive root from a Location Path.
string path = "C:\\Windows";
//Find its root directory i.e "C:\\"
string rootDir = Directory.GetDirectoryRoot(path);
//Get all information of Drive i.e C
DriveInfo driveInfo = new DriveInfo(rootDir); //you can pass Drive path here e.g DriveInfo("C:\\")
long availableFreeSpace = driveInfo.AvailableFreeSpace;
string driveFormat = driveInfo.DriveFormat;
string name = driveInfo.Name;
long totalSize = driveInfo.TotalSize;
Utilisez la classe System.IO.DriveInfo http://msdn.Microsoft.com/en-us/library/system.io.driveinfo.aspx
Vérifiez la classe DriveInfo et voyez si elle contient toutes les informations dont vous avez besoin.