|
JavaScript Tips
XML Menu Builder
Build powerful, client-side DHTML menus using XML for data and CSS for style. No JavaScript data! No having to place list elements on every single page of your website! No plug-ins!
Copying All Files and Folders with the FileSystemObject The FileSystemObject is part of the Microsoft Windows scripting API and contains routines for creating and manipulating local files. One poorly documented feature of the FileSystemObject is that the source parameters of the copyFile and copyFolder methods accept the wildcard charactor (*). You can use the wildcard character to copy all files/folders in a given folder. The example source code below copies all files and folders in the folder c:\my_source to folder c:\my_destination <script type="text/javascript"> |