0
我需要我的程序刪除目錄中的所有BMP文件,目前我有VB *字符不工作
My.Computer.FileSystem.DeleteFile("*.bmp")
但它說,*是無效的,在此使用*不正確的字符背景?如果是這樣,那是什麼?
我需要我的程序刪除目錄中的所有BMP文件,目前我有VB *字符不工作
My.Computer.FileSystem.DeleteFile("*.bmp")
但它說,*是無效的,在此使用*不正確的字符背景?如果是這樣,那是什麼?
Dim fileEntries As String() = Directory.GetFiles(targetDirectory)
For each f in fileEntries
If file.GetExtension(f) = ".bmp" then
file.deleteFile(f)
End If
Next
我從內存中這樣做,但這應該讓你在那裏。
你需要當然import system.io
[搜索到的文件擴展名VB.NET]的可能的複製(http://stackoverflow.com/questions/8676516/searching-by-file-extensions-vb-net) – Spidey
刪除星標,然後重試。 – RyanfaeScotland