On 6/15/06 3:14 PM, "Giles Williams" <[EMAIL PROTECTED]> wrote:

> I am confused.
> 
> Can you give an example of this and how it would work? I do not see
> how that would look inside the folder and loop through the files inside.
> 
> Giles.

Function DeleteAll (base As FolderItem)
  Dim i As Integer
  
  For i = 1 to base.Count
    if base.Item(i).Directory then
      DeleteAll(base.Item(i))
    else
      base.Item(i).Delete
    end if
  Next
End Function

-Seth


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to