home *** CD-ROM | disk | FTP | other *** search
- //
- // Create.js
- //+
- // Create a structured storage file with sub-storages
- //-
- // rev 11/01/98 gls
- //
-
-
- // //////////////////////////////////////////////////
- function Show( pszText )
- {
- WScript.Echo( pszText );
- }
-
- // //////////////////////////////////////////////////
- function Create( sFile )
- {
- var objStg = WScript.CreateObject( "gstg.core" )
-
- objStg.Create( sFile );
-
- objStg.MkDir( "\\tmp" );
-
- objStg.MkDir( "\\tmp1" );
- objStg.MkDir( "\\tmp2" );
- objStg.MkDir( "\\tmp3" );
-
- objStg.Close();
-
- }
- // //////////////////////////////////////////////////
-
- Create( "tmp.stg" );
-
- // //////////////////////////////////////////////////
- // //////////////////////////////////////////////////
- // //////////////////////////////////////////////////
-