Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How VBScript uses aqfolder to add / remove folders

2025-11-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Code example:

'' create a folder

Sub create_a_folder

Call aqFileSystem.CreateFolder ("D:\ newfolder")

End sub

'' delete a folder

Sub delet_a_fFolder ()

Set FolderInf = aqFileSystem.GetFolderInfo ("D:\ newfolder")

Call FolderInf.Delete (true)

End sub

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

  • How to realize online document Preview in springboot2

    Springboot2 how to achieve online document preview, I believe that many inexperienced people do not know what to do, so this article summarizes the causes of the problem and solutions, through this article I hope you can solve this problem. In the first step, you need to introduce the corresponding jar:

    12
    Report