var names = new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.Desktop))
.GetDirectories().Select(d => d.Name).ToList();
solved How to read all folder’s name in desktop? [closed]
var names = new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.Desktop))
.GetDirectories().Select(d => d.Name).ToList();
solved How to read all folder’s name in desktop? [closed]