
You can delete folder!
VBA Code
As an example, delete the folder.

Option Explicit
Sub sampleProc()
Dim fso As Object
Dim folderFullPath As String
'Set "Folder path you want to delete"
folderFullPath = "C:\Users\user\Desktop\hogehoge"
Set fso = CreateObject("Scripting.FileSystemObject")
'Delete Folder
fso.DeleteFolder (folderFullPath)
Set fso = Nothing
End Sub
Result
You deleted folder!
FYI
For more information about following, see the following official online manual:
●“DeleteFolder method” of “FileSystemObject”