? in filename

  • Thread starter Thread starter jmorris193
  • Start date Start date
I have filenames that contain ? in them. What are they and how can I
delete them?

You have some rogue application that creates them. If their names
start with the letters "ab" then you can probably delete them from
a Command Prompt like so:

dir c:\ab*.*
del c:\ab*.*

The first command shows you which files would be deleted.
The second will delete them.
 
Back
Top