I have been writing a code to remove common virus we are facing today, that simply puts all data into a special folder that shows no title. In fact it is a chr(160)
in VB. When I get directory list it shows with and empty name but I cannot change its name or view its contents.
P.S. You can test this by creating a folder with name Alt+0160
For Each foldername In Directory.GetDirectories("d:\x\ ")
TextBox1.Text += foldername + vbCrLf
If fname = " " Then
FileIO.FileSystem.RenameDirectory(foldername, "temp")
End If
Next