Thế này được chưa ? 
Code:
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Win32;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion");
string temp = (string)key.GetValue("PathName");
int idx = temp.IndexOf(@"\");
string disk = temp.Remove(idx+1);
Console.WriteLine("O dia cai HDH: " + disk);
string folder = temp.Remove(0, idx+1);
Console.WriteLine("Thu muc cai HDH: " + folder);
}
}
}