Justtechjobs.com Find a programming school near you






Online Campus Both


php-windows | 2001051

RE: [PHP-WIN] HELP: Print directory structure. From: Svensson, B.A.T. (B.A.T.Svensson <email protected>)
Date: 05/15/01

Untested :-) generic algorithm for recursion:

PROCEDURE Recurce(a)
  PROCESS a
  IF <some-break-condition-true> THEN
    DO <normal program stament>
  ELSE
    DO Recurce(a)
  END IF
END

>-----Original Message-----
>From: Alessio Bernesco L`vore
>[mailto:alessio.bernesco <email protected>]
>Sent: Tuesday, May 15, 2001 4:10 PM
>To: php-windows <email protected>
>Subject: [PHP-WIN] HELP: Print directory structure.
>
>
>Could someone help me, please?
>
>I have to build a recursive function that print to video all the
directories
>(and sub-directories and so on...) names presents in a specified
>sub-directory on the server.
>
>I can't handle that function, please, i'm in panic...
>
>Thanks,
>
>Alessio.
>
>
>
>--
>PHP Windows Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: php-windows-unsubscribe <email protected>
>For additional commands, e-mail: php-windows-help <email protected>
>To contact the list administrators, e-mail:
>php-list-admin <email protected>
>

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-windows-unsubscribe <email protected>
For additional commands, e-mail: php-windows-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>