set_install_folder

set_install_folder(string folder): bool

Прочитать весь текст.

Команда на вход принимает параметры:
  • folder – путь к папке приложения LibreOffice
После отработки команда возвращает результат своей работы в робот:
  • Текст - успешно? Да/Нет



Пример использования (php)

<?php
// Scenario: Set the installation folder for LibreOffice
 
$xhe_host = "127.0.0.1:7010";
 
// подключим функциональные объекты, если еще не подключен
if (!isset($path)){
    // Path to the init.php file for connecting to the XHE API
    $path = "../../../Templates/init.php";
    // Including init.php grants access to all classes and functionality for working with the XHE API
    require($path);
}
 
// начало
echo "\n<span >libreOffice->".basename (__FILE__)."</span>\n";
 
// Example 1: Set the path to LibreOffice folder
echo("\n\nExample 1: Set the path to LibreOffice folder\n");
$installPath = "C:\\Program Files\\LibreOffice\\program";
$result = SYSTEM::$libreOffice->set_install_folder($installPath);
echo("Set install path to: $installPath\n");
var_export($result);
 
// Quit the application
WINDOW::$app->quit();
?>