取出路径中的文件名
取出路径中的文件名open System.IOlet rec allFilesUnder basePath =seq {yield! Directory.GetFiles(basePath)for subdir in Directory.GetDirectories(basePath) doyield! allFilesUnder subdir}allFilesUnder @"c:\"|> Seq.take 10|> Seq.toList|> List.map (fun i -> i.Substring(i.LastIndexOf(@"\")+1))
补充:综合编程 , 其他综合 ,