Directory delete questions
Hi,
Have to questions cause can;t find it:
1) How to check if directory contains anything e.g folder or files, wahetever... or is it empty
1) How to remove emopty directory?
2) How to remove directory even if there content.
For instance for creating directory i am using below function:
Have to questions cause can;t find it:
1) How to check if directory contains anything e.g folder or files, wahetever... or is it empty
1) How to remove emopty directory?
2) How to remove directory even if there content.
For instance for creating directory i am using below function:
Public Sub CreateDirectory(path As String) If session IsNot Nothing Then session.CreateDirectory(path) End If End Sub