Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从文档名称列表中查询主文件夹。文档类型是任意的。每个文件都存储在同名的文件夹中。
样本结构:
主文件夹
-> 培根 --> bacon.doc
-> 樱桃 -> 樱桃.pdf
现在我有代码:
FileInfo file = new FileInfo(@"\\Main folder\\ + string[i] + "\\" + string[i]);
但我不知道要附加什么,以便它搜索相同字符串 [i] 的任何文件。
也许你应该看看这样的东西......
string[] filePaths = Directory.GetFiles(@"c:\MyDir\"); // returns: // "c:\MyDir\my-car.BMP" // "c:\MyDir\my-house.jpg"
首先获取文件路径。然后将其用于 FileInfo 构造函数。
http://www.csharp-examples.net/get-files-from-directory/