Environment.SpecialFolder w = new Environment.SpecialFolder();
string[] s = Enum.GetNames(w.GetType());
Array o = Enum.GetValues(w.GetType());
foreach (string t in s) { listView1.Items.Add(new ListViewItem(new string[]{t, ((int)o.GetValue(i++)).ToString()})); }