first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?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');
|
||||
}
|
||||
Reference in New Issue
Block a user