.Net 如何获取指定路径下的文件名称(比如Excel文件)

如题所述

第1个回答  2017-07-22
using System.IO;
string path = @"D:/test";
        DirectoryInfo dinfo = new DirectoryInfo(path);
        string[] temp = null;
        if (dinfo.Exists)
        {
            FileInfo[] finfo= dinfo.GetFiles();
            temp=new string[finfo.Length];
            for (int i = 0; i < finfo.Length; i++)
                temp[i] = finfo[i].Name;
        }

本回答被网友采纳
相似回答