BackupDirectory Property



 
The BackupDirectory property contains the automatic backup directory.


Syntax

    SiteCafe.Server.Config.BackupDirectory [=str]
    
Possible Values
    String that specifies or retrieves the directory.

    The property is read/write.
Remarks
    None.
Examples
    The following example automatically creates a backup at 9:00 o'clock.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe.Server.Config.EnableBackups = true;
    SiteCafe.Server.Config.BackupCopies = 1;
    SiteCafe.Server.Config.BackupDirectory = "c:\backups";
    SiteCafe.Server.Config.BackupHour = 9;
    SiteCafe.Server.Config.BackupMinute = 0;
    </SCRIPT>
    

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

Back to top