home *** CD-ROM | disk | FTP | other *** search
- //
- // CopyFrom.js
- //+
- // Copy a file from the structured file to some .tmp files
- //-
- // rev 11/01/98 gls
- //
-
-
- // //////////////////////////////////////////////////
- function Show( pszText )
- {
- WScript.Echo( pszText );
- }
-
- // //////////////////////////////////////////////////
- function CopyFrom( sFile )
- {
- var objStg = WScript.CreateObject( "gstg.core" )
-
- objStg.Open( sFile );
-
- objStg.CopyFrom( "copyto.js", "tmp.tmp" );
- objStg.CopyFrom( "copyto.js", "tmp2.tmp" );
- objStg.CopyFrom( "\\tmp\\copyto.js", "tmp2x.tmp" );
-
-
- objStg.Close();
-
- }
- // //////////////////////////////////////////////////
-
- CopyFrom( "tmp.stg" );
-
- // //////////////////////////////////////////////////
- // //////////////////////////////////////////////////
- // //////////////////////////////////////////////////
-