VBA DeleteFolderでフォルダを削除する(FSO)

Written by

Editorial Team

Reviewed by

Steve Rynearson

Translated by

masahiro yoshida

Last updated on 6月 28, 2022

このショートチュートリアルでは、FileSystemObjectのDeleteFolderメソッドの使用方法を説明します。

VBAのFileSystemObjectでフォルダを削除する

このレッスンでは、FileSystemObjectを使用します。使用するには、VBスクリプトのランタイムライブラリへの参照を設定する必要があります。詳しくはこちらをご覧ください。

フォルダの削除は、FileSystemObjectのDeleteFolderメソッドを使うと簡単です。

Sub FSODeleteFolder()
    Dim FSO As New FileSystemObject
    Set FSO = CreateObject("Scripting.FileSystemObject")

    FSO.DeleteFolder "C:\TestFolder", False

End Sub

FSO.DeleteFolderの行の最後にあるforceオプションの部分をTrueにすると、読み取り専用属性が設定されているフォルダも削除することができます。

vba-free-addin

VBA Code Examples Add-in

Easily access all of the code examples found on our site.

Simply navigate to the menu, click, and the code will be inserted directly into your module. .xlam add-in.

(No installation required!)

Free Download

Return to VBA Code Examples