Ahankhah Posted April 23, 2011 Posted April 23, 2011 :)Hello everyone, I need to romove some empty directories via autolisp code. Is there any way? Any help is appreciated. Quote
pBe Posted April 23, 2011 Posted April 23, 2011 :)Hello everyone,I need to romove some empty directories via autolisp code. Is there any way? Any help is appreciated. (defun delFolder (folder) (vl-load-com) (setq fso (vlax-create-object "Scripting.FileSystemObject")) (vlax-invoke-method fso 'DeleteFolder folder :vlax-false) (vlax-release-object fso) ) (DELFOLDER "D:\\xxxx") Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.