-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_copy.php
55 lines (42 loc) · 1.83 KB
/
file_copy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
define('ACCESS', true);
require '.init.php';
$title = 'Sao chép tập tin';
require 'header.php';
echo '<div class="title">' . $title . '</div>';
if (!$file->isFile()) {
echo '<div class="list"><span>Đường dẫn không tồn tại</span></div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/list.png"/> <a href="index.php' . $pages['paramater_0'] . '">Danh sách</a></li>
</ul>';
} else {
$dir = processDirectory($dir);
$newName = $_POST['name'] ?? $name;
$newDir = $_POST['dir'] ?? $dir;
$newPath = "$newDir/$newName";
if (isset($_POST['submit'])) {
echo '<div class="notice_failure">';
if (empty($newDir) || empty($newName)) {
echo 'Chưa nhập đầy đủ thông tin';
} elseif (file_exists($newPath)) {
echo 'Tệp đã tồn tại';
} elseif (!@copy($dir . '/' . $name, $newPath)) {
echo 'Sao chép tập tin thất bại';
} else {
goURL('index.php?dir=' . $dirEncode . $pages['paramater_1']);
}
echo '</div>';
}
echo '<div class="list">
<span class="bull">•</span><span>' . printPath($dir . '/' . $name) . '</span><hr/>
<form action="file_copy.php?dir=' . $dirEncode . '&name=' . $name . $pages['paramater_1'] . '" method="post">
<span class="bull">•</span>Đường dẫn tập tin mới:<br/>
<input type="text" name="dir" value="' . htmlspecialchars($newDir) . '" size="18"/><br/>
<input type="text" name="name" value="' . htmlspecialchars($newName) . '" size="18"/><br/>
<input type="submit" name="submit" value="Sao chép"/>
</form>
</div>';
printFileActions($file);
}
require 'footer.php';