l

확장자 bak 파일 지우기

· 17년 전 · 1906

폴더마다 싸여가는 bak파일을 지우기가 귀챦아 만들어 보았습니다...

필요한 사람은 있겠죠...

<?php

$dir = '';
if (isset($_GET['dir'])) {
 $dir = $_GET['dir'];
}

$del_sub_dir = '';
if (isset($_GET['del_sub_dir'])) {
 $del_sub_dir = $_GET['del_sub_dir'];
}

?>
<html>
<head>
<title>bak 파일 삭제</title>
<style>
body, input{
 font-family: verdana,굴림,tahoma;
 font-size: 11px;
}

</style>
</head>
<body>
<form method="get">
<p>
확장자가 bak로 되어 있는 파일들을 삭제합니다. 삭제할 파일들이 들어 있는 폴더를 지정해 주세요.<br />
<input type="text" size="50" value="<?php echo $dir; ?>" name="dir" /> <input type="checkbox" value="1" name="del_sub_dir" <?php echo ($del_sub_dir=="1")?'checked="checked"':''; ?> />하위 폴더에 있는 파일도 삭제시 체크<br />
<input type="submit" value="삭제시작" />
</p>
</form>

<p>

<?php

function delbak($dir, $del_sub_dir=true)
{
 if (is_dir($dir)) {
  $d = dir($dir);
  while (false !== ($entry = $d->read()))
  {
   if ($entry == '.' || $entry == '..') {
    continue;
   }

   if (is_dir($d->path.DIRECTORY_SEPARATOR.$entry)) {
    if ($del_sub_dir) {
     delbak($d->path.DIRECTORY_SEPARATOR.$entry, $del_sub_dir);
    }
   }

   else if (preg_match("/.*\.bak$/i", $entry)) {
    echo $d->path.DIRECTORY_SEPARATOR.$entry.'<br />';
    @unlink($d->path.DIRECTORY_SEPARATOR.$entry);
    
   }
  }
  $d->close();
 }
}


if (strlen($dir))
{
 $path = realpath($dir);

 delbak($path, ($del_sub_dir=="1"?true:false));
 echo '<script>alert("확장자가 bak인 파일들을 모두 삭제했습니다!");</script>';
}

?>
</p>
</body>
</html>

[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 3,834
17년 전 조회 3,072
17년 전 조회 2,334
17년 전 조회 1,579
17년 전 조회 2,613
17년 전 조회 2,340
17년 전 조회 2,257
17년 전 조회 2,195
17년 전 조회 1,443
17년 전 조회 2,150
17년 전 조회 3,185
17년 전 조회 1,696
17년 전 조회 1,944
17년 전 조회 1,618
17년 전 조회 1,858
17년 전 조회 1,840
17년 전 조회 1,746
17년 전 조회 2,825
17년 전 조회 2,599
17년 전 조회 2,394
17년 전 조회 1,679
17년 전 조회 2,700
17년 전 조회 4,520
17년 전 조회 3,023
17년 전 조회 1,926
17년 전 조회 2,126
17년 전 조회 3,525
17년 전 조회 2,511
17년 전 조회 4,089
17년 전 조회 1,953
17년 전 조회 2,538
17년 전 조회 2,380
17년 전 조회 1,887
17년 전 조회 2,400
17년 전 조회 2,204
17년 전 조회 2,241
17년 전 조회 3,360
17년 전 조회 2,417
17년 전 조회 1,711
17년 전 조회 1,732
17년 전 조회 2,386
17년 전 조회 3,493
17년 전 조회 2,408
17년 전 조회 1,812
17년 전 조회 4,501
17년 전 조회 2,299
17년 전 조회 3,730
17년 전 조회 6,308
17년 전 조회 1,756
17년 전 조회 1,907
17년 전 조회 1,499
17년 전 조회 1,608
17년 전 조회 3,145
17년 전 조회 2,175
17년 전 조회 2,849
17년 전 조회 1,558
17년 전 조회 3,448
17년 전 조회 2,446
17년 전 조회 2,869
17년 전 조회 1,670
17년 전 조회 2,030
17년 전 조회 1,401
17년 전 조회 1,462
17년 전 조회 2,046
17년 전 조회 1,478
17년 전 조회 4,570
17년 전 조회 1,782
17년 전 조회 2,260
17년 전 조회 7,373
17년 전 조회 1,634
17년 전 조회 2,172
17년 전 조회 3,413
17년 전 조회 1,470
17년 전 조회 2,240
17년 전 조회 1,402
17년 전 조회 2,086
17년 전 조회 2,427
17년 전 조회 3,239
17년 전 조회 1,496
17년 전 조회 1,567
17년 전 조회 1,820
17년 전 조회 1,490
17년 전 조회 4,631
17년 전 조회 4,152
17년 전 조회 3,061
17년 전 조회 1,840
17년 전 조회 1,581
17년 전 조회 1,869
17년 전 조회 2,790
17년 전 조회 1,994
17년 전 조회 2,275
17년 전 조회 1,557
17년 전 조회 1,303
17년 전 조회 1,377
17년 전 조회 3,167
17년 전 조회 2,722
17년 전 조회 2,291
17년 전 조회 2,321
17년 전 조회 2,058
17년 전 조회 2,491