Files
ntspi-app/public/sveden/update/read_settings.php
T
2024-09-19 16:06:49 +05:00

9 lines
262 B
PHP

<?php
function tempCopyFile($fromDir, $delDir, $tempDir)
{
copy($fromDir . '/index.html', $tempDir. '/index.html');
removeDirectory($delDir);
if (!file_exists($fromDir)) mkdir($fromDir);
copy($tempDir . '/index.html', $fromDir. '/index.html');
}