I am using VB6. The tool that i have created extracts few zip files and unzips them onto a folder that i create locally.In the clean up part of my code, i have deleted the folder using this code

If (f.FolderExists(path + "Extracted Files") = True) Then
     f.DeleteFolder (path + "Extracted Files")
End If

When i run this code, i get an error Run Time Error '70' and Permission Denied in the line f.DeleteFolder(path + 'Extracted Files').

Where am i going wrong ? Or do i need to create the folder with a different permission ?

link|improve this question

44% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Perhaps one or more of the files is read-only? Use the optional force parameter to force deletion:

f.DeleteFolder (path + "Extracted Files"), True
link|improve this answer
feedback

Do you still have one of the files in this folder open in your code somewhere?

link|improve this answer
feedback

no i do not have any of the files from that folder open

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.