gpt4 book ai didi

vb.net - 删除单个 .txt 文件(如果 Visual Basic 中存在)?

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

我一直在试图弄清楚如何删除一个不断更改名称的 .txt 文件,除了前 4 个示例:THISTEXT-123-45.txt,其中 THISTEXT 保持不变,但 -123-45 更改。

我找到了检测它的方法,但我不知道如何删除它。

Dim paths() As String = IO.Directory.GetFiles("C:\", "THISTEXT*.txt")
If paths.Length > 0 Then

任何人都知道删除那个特殊的 .txt 文件的命令行吗?
我在 Visual Studio 2013 框架 3.5 上使用 Visual Basic。

最佳答案

如果您阅读 GetFiles 上的 MSDN 页面,您将意识到您的路径数组中有文件名和路径。然后您可以遍历数组删除您的匹配项。

Dim x as Integer
Dim paths() as String = IO.Directory.GetFiles("C:\", "THISTEXT*.txt")
If paths.Length > 0 Then
For x = 0 to paths.Length -1
IO.File.Delete(paths(x))
Next
End If

关于vb.net - 删除单个 .txt 文件(如果 Visual Basic 中存在)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30584744/

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