Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Droot
|--->D1
| |--->Dsub1
| | |--->F1
| | |--->DsubSub1
| |
| |--->Dsub2
| | |--->F2
| |
| |--->F3
|
|--->D2
filefound = FindFirst( d1 );
do
{
if ( isdir( filefound ) )
mkdir( d2 + filename( filefound ) ) ;
else
copyfile( d1 + filename( filefound ), d2 + filename( filefound ) ) ;
} while filefound = FindNext() ;
EndFind() ;