Hi I can delete folder manually but I need to automate a folder deletion process silently.
There was originally a desktop.ini in the folder and regardless of whether I showed system files or not, or deleted the file manually, the folder I want to delete still remained using the following methods:
After using CD to navigate to the parent directory.
I write the following to delete a specific folder in that directory:
"rmdir FOLDERNAME" which results in folder not empty.
"del /q FOLDERNAME" which fails to delete, but no error (hence the /q)
Just for testing purposes, I tried it without /q:
"del FOLDERNAME" which results in Y/N Are you sure, I type "Y" but folder remains.
Any ideas?