Search:

Type: Posts; User: jmcilhinney

Search: Search took 1.56 seconds.

  1. Re: Deleting - Files And Sub directories Without Deleting The Folder Itself

    By the way, if you feel like you need to use Application.DoEvents then you should be looking at doing asynchronous/background work instead, e.g. use a BackgroundWorker and do the work in the DoWork...
  2. Re: Deleting - Files And Sub directories Without Deleting The Folder Itself

    Public Sub DeleteFilesAndSubfolders(folderPath As String)
    If Directory.Exists(folderPath) Then
    For Each filePath As String In Directory.GetFiles(folderPath)
    ...
Results 1 to 2 of 2



Click Here to Expand Forum to Full Width