我有某些法典:
string pathUser = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string pathDownload = Path.Combine(pathUser, @"documentsiracingsetups");
DirectoryInfo dinfo = new DirectoryInfo(pathDownload); // Populates field with all Sub Folders
FileInfo[] Files = dinfo.GetFiles("*.sto");
foreach (FileInfo file in Files)
{
listBox2.Items.Add(file.Name);
}
我想显示以下几个小标题:documentsiracingsetups
,而不是档案......包括档案。 所有这一切都需要列出各分文件,......没有人会知道如何这样做? 感谢!