<?php

include './structureHandler.php';
include './errorHandler.php';
$folderTarget = "D:/xampp.5.4.27/htdocs/workbench/imageBrowser/images/";
$structureHandler = new structureHandler($folderTarget);
$structure = $structureHandler->getDirectoryStructure();
$mapFile = "map.json";
touch("map.json");
file_put_contents("map.json", json_encode(array($structure)));
Example #2
0
 static function synchroniseFiles($targetFolder, $mapFile)
 {
     $structureHandler = new structureHandler($targetFolder, $mapFile);
     $syncStatus = $structureHandler->synchronise($targetFolder) ? true : false;
     return json_encode(array("synchroniseSuccessful" => $syncStatus));
 }