What's the fastest way to delete a large folder in Windows? – Stack Overflow

Long story short:
 

del /f/s/q foldername > nul
rmdir /s/q foldername
The first command deletes all the files
the second deletes all the folder/subdfolders

 
Source: What’s the fastest way to delete a large folder in Windows? – Stack Overflow