Import Method



 
The Import method imports a file or directory.


Syntax

    CDDirectory.Import(name)
    
Parameters
    name String that specifies the name of the file or directory.
Return Value
    None.
Remarks
    None.
Examples
    The following example imports a complete directory into the first subdirectory of the root directory.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    subDir = SiteKiosk.CDRecording.RootDirectory.Directories.Item(1);
    subDir.Import("c:/dir");
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top