gpt4 book ai didi

VB.Net 删除文件夹中的所有文件

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

我试图从 VB.Net 中的单个文件夹中删除所有文件,但要保留该文件夹。

据我所知,我可以通过这种方式删除文件:

Dim heart17 As System.IO.FileInfo = New IO.FileInfo("path")
heart17.Delete()

它有效,但我需要清空整个文件夹。

文件夹路径是

C:\Users\username\Desktop\Games.



我已阅读 this question ,但它对我不起作用(它有一些错误或者我做错了什么)。

最佳答案

这将帮助您delete all files在指定目录下可以指定搜索模式删除满足该模式的文件;一些可能的搜索模式是:

  • "*.jpg" - selects all jpg files.

  • "*.txt" - selects all text files.

  • "*123.txt" selects all text files whose name ends with 123


Dim directoryName As String = "your path here"
For Each deleteFile In Directory.GetFiles(directoryName ,"*.*",SearchOption.TopDirectoryOnly)
File.Delete(deleteFile)
Next

关于VB.Net 删除文件夹中的所有文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37010591/

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