lothos12345
Well-known member
Is there a quick way I can delete all the files in a folder using VB.NET. Any help is greatly apprieciated. Also using an inputbox is there a way I can make the text typed appear to be as "*".
dim files() as string = System.io.directory.GetFiles("c:\") change as appropriate
dim file as string
for each file in files
system.io.file.delete(file)
next