עזרה עבור LibreOfficeDev 7.4
Deletes an existing directory from a data medium.
RmDir Text As String
Text: Any string expression that specifies the name and path of the directory that you want to delete. You can also use URL notation.
If the path is not determined, the \
Sub ExampleRmDir
MkDir "C:\Test2"
ChDir "C:\test2"
MsgBox Curdir
ChDir "\"
RmDir "C:\test2"
End Sub