All-
What Ruby command will delete all files within a directory. (I'm using Ruby on Windows.)
I'm trying to delete all files within the directory "output", which is itself in the current directory.
I've tried various lines looking like this:
File.delete("./output/*")
But I keep getting "Invalid arguement" or "permission denied" errors.
Thanks for the help.
-Kurt