gpt4 book ai didi

c# - 文件按文件名模式存在

转载 作者:IT王子 更新时间:2023-10-29 03:41:44 26 4
gpt4 key购买 nike

我正在使用:

File.Exists(filepath)

我想做的是将它换成一个模式,因为文件名的第一部分发生了变化。

例如:文件可以是

01_peach.xml
02_peach.xml
03_peach.xml

如何根据某种搜索模式检查文件是否存在?

最佳答案

你可以做一个带有模式的目录列表来检查文件

string[] files = System.IO.Directory.GetFiles(path, "*_peach.xml", System.IO.SearchOption.TopDirectoryOnly);
if (files.Length > 0)
{
//file exist
}

关于c# - 文件按文件名模式存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1199260/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com