-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_move.php
51 lines (39 loc) · 1.84 KB
/
file_move.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
<?php
define('ACCESS', true);
require '.init.php';
$title = 'Di chuyển tập tin';
require 'header.php';
echo '<div class="title">' . $title . '</div>';
if ($dir == null || $name == null || !is_file(processDirectory($dir . '/' . $name))) {
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);
$format = getFormat($name);
if (isset($_POST['submit'])) {
echo '<div class="notice_failure">';
if (empty($_POST['path'])) {
echo 'Chưa nhập đầy đủ thông tin';
} elseif ($dir == processDirectory($_POST['path'])) {
echo 'Đường dẫn mới phải khác đường dẫn hiện tại';
} elseif (!@rename($dir . '/' . $name, processDirectory($_POST['path']) . '/' . $name)) {
echo 'Di chuyển 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_move.php?dir=' . $dirEncode . '&name=' . $name . $pages['paramater_1'] . '" method="post">
<span class="bull">• </span>Đường dẫn tập tin mới:<br/>
<textarea name="path" data-autoresize>' . (isset($_POST['path']) ? $_POST['path'] : $dir) . '</textarea><br/>
<input type="submit" name="submit" value="Di chuyển"/>
</form>
</div>';
printFileActions($file);
}
require 'footer.php';