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.
我正在尝试进入一个文件夹并查找扩展名为 .abc 的文件,这些文件会在这个文件夹中来来去去,但我想知道的是这个文件是否存在并且文件的大小是否大于 50kb,那么我应该是通知。我有这个代码:
if(File.Exists(@"c:\home\myfolder\*.abc")) { }
我不认为放 * 会让我得到扩展名为 .abc 的文件,有谁知道我如何实现这一点并获取文件的大小(如果存在)?
string[] files = System.IO.Directory.GetFiles(@"c:\home\myfolder", "*.abc"); if (files.Length > 0) { }