For a PHP project I'm working on, focussing on data homogenity, a certain directory structure can be managed.After a user completes a process creating an object (I won't bother you guys with all the project details) this directory structure should be copied to a mapped network drive.Since the users might have the networkdrive mapped to a different driveletter, I'm using javascript (\[code\]FileSystemObject\[/code\]) to get the driveletter.This is all OK. But now comes the tricky part. How am I able to copy my directorystructure, managed on the webserver by the webapp I'm building, to this networkdrive?I know I can use the FSO to create new directories, my problem is how to pass the recursive directorystructure from PHP into javascript.