gpt4 book ai didi

vb.net - 检查文件名的一部分是否存在

转载 作者:行者123 更新时间:2023-12-04 16:40:12 26 4
gpt4 key购买 nike

所以我知道在下面的代码示例中,它会检查文件是否存在(完整文件名)...

If My.Computer.FileSystem.FileExists("C:\Temp\Test.cfg") Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If

...但是如果文件的一部分存在呢?文件没有标准命名约定,但它们将始终具有 .cfg 扩展名。

所以我想检查 C:\Temp 是否包含 *.cfg 文件,如果它存在,做一些事情,否则做其他事情。

最佳答案

* char 可用于定义简单的过滤模式。例如,如果您使用 *abc*它将查找名称中包含“abc”的文件。

Dim paths() As String = IO.Directory.GetFiles("C:\Temp\", "*.cfg")
If paths.Length > 0 Then 'if at least one file is found do something
'do something
End If

关于vb.net - 检查文件名的一部分是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14693651/

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