Greetings Fabien!

   That works very well, and is so much smaller and cleaner than the SUB 
you put in the initial email. By the way, that first SUB would have had 
a problem creating the stmpDir folder, it would, as written, not put in 
the delimiting "/" characters and would try to create a directory 
"/homeuser_name" and fail. This was a result of using the "for each" and 
"Split", necessites the addition of a counter or a boolean variable so 
the logic knows when it is on the first pass through the loop and 
handles all other passes by using "stmpDir &= "/" & s"  instead of 
"stmpDir &= s".

On 07/01/2011 06:13 AM, Fabien Bodard wrote:
> This is the good way in your way ... but it's a bad way in my fill
>
> Private Sub CreateNewOutputFolder(sFolderSpec As String)
>
>    If Not Exist(sFolderSpec) Then Mkdir sFolderSpec
>
>   Catch
>      'if problem try on the prec folder
>      CreateNewOutputFolder(File.Dir(sFolderSpec))
>      'Re Try the folder creation if all is good
>      Mkdir sFolderSpec
>
> End
>
>
> Because you can't manage correctly all the errors.
>
> ------------------------------------------------------------------------------
> All of the data generated in your IT infrastructure is seriously valuable.
> Why? It contains a definitive record of application performance, security
> threats, fraudulent activity, and more. Splunk takes this data and makes
> sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-d2d-c2
> _______________________________________________
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>


------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to