public class Person
{
public string title { get; set; }
public string key { get; set; }
public List
방법 2: 단지 구조가 다를 뿐이다
public class Person
{
public string title { get; set; }
public string key { get; set; }
public List directorylist = new List();
public List filelist = new List();
}
public static void GetFileName(string path,Listlist)
{
DirectoryInfo dir = new DirectoryInfo(path);
FileSystemInfo[] fileInfo = dir.GetFileSystemInfos();
foreach (var item in fileInfo)
{
if (item is DirectoryInfo)
{
Person p = new Person();
main.key = item.CreationTime.ToString();
main.title = item.Name;
main.children.Add(p);
GetName(item.FullName,p);
}
else
{
//
//list.Add(item.Name.Substring(0, item.Name.LastIndexOf('.')));
main.lis.Add(item.Name);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다: