윈도우 리눅스 공용입니다.
단 윈도우의 경우에는 소유권, 그룹정보는 가져오지 못합니다.
여러가지 활요예가 있겠지만
이런경우에 유용합니다.
압축을 하고 전혀 다른 계정에 압축을 풀었을때
퍼미션이나 소유권 문제때문에 고민할때 사용하면 유용합니다.
이하 소스입니다.
function Ysave_dir_owner_perm($dir, $debug=false){
if (!is_dir($dir)) return false;
if (!preg_match("`/$`", $dir)) $dir .= '/';
if (preg_match("`win`i", PHP_OS)) $os = 'windows';
else $os = 'unix or linux';
$text = '';
$d = dir($dir);
while (false !== ($entry = $d->read())) {
if (substr($entry, 0, 1) == '.') continue;
if ($os != 'windows') $text .= 'chown ' . fileowner($dir . $entry) . '.' . filegroup($dir . $entry) . ' ' . $dir . $entry . " \n";
$text .= 'chmod ' . substr(decoct(fileperms($dir . $entry)), -4) . ' ' . $dir . $entry . " \n";
if ($debug == true) {
if ($os != 'windows') echo 'chown ' . fileowner($dir . $entry) . '.' . filegroup($dir . $entry) . ' ' . $dir . $entry . " <br>\n";
echo 'chmod ' . substr(decoct(fileperms($dir . $entry)), -4) . ' ' . $dir . $entry . " <br>\n";
}
if (is_dir($dir . $entry)){
$text .= Ysave_dir_owner_perm($dir . $entry, $debug);
}
else{
continue;
}
}
$d->close();
return $text;
}
function Ysave_file($file, $text, $perm=0777){
if (empty($file)) return false;
$fp = @fopen ($file, 'w');
if (empty($fp)) return false;
@fwrite ($fp, $text);
@fclose($fp);
return @chmod ($file, $perm);
}
$dir = './';
$text = Ysave_dir_owner_perm($dir, true);
if ($text == false) echo '디렉토리내의 정보를 읽는데 실패하였습니다.';
$save_result = Ysave_file('./temp/owner_perm.txt', $text, 0777);
if (empty($save_result)) echo '파일저장에 실패하였습니다.';
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 635 | ||
| 7629 |
|
10년 전 | 2345 | |
| 7628 | 10년 전 | 768 | ||
| 7627 |
|
10년 전 | 999 | |
| 7626 |
|
10년 전 | 1758 | |
| 7625 | 10년 전 | 659 | ||
| 7624 | 10년 전 | 681 | ||
| 7623 |
|
10년 전 | 3005 | |
| 7622 | 10년 전 | 691 | ||
| 7621 |
leeleeleelee
|
10년 전 | 567 | |
| 7620 | 10년 전 | 526 | ||
| 7619 | 10년 전 | 454 | ||
| 7618 | 10년 전 | 995 | ||
| 7617 | 10년 전 | 713 | ||
| 7616 | 10년 전 | 609 | ||
| 7615 | 10년 전 | 706 | ||
| 7614 | 10년 전 | 1209 | ||
| 7613 |
|
10년 전 | 2050 | |
| 7612 | 10년 전 | 1121 | ||
| 7611 | 10년 전 | 1385 | ||
| 7610 |
|
10년 전 | 1874 | |
| 7609 |
|
10년 전 | 1290 | |
| 7608 |
mwdkim
|
10년 전 | 1093 | |
| 7607 |
|
10년 전 | 1021 | |
| 7606 |
mwdkim
|
10년 전 | 3900 | |
| 7605 | 10년 전 | 667 | ||
| 7604 | 10년 전 | 1002 | ||
| 7603 | 10년 전 | 1627 | ||
| 7602 |
|
10년 전 | 1041 | |
| 7601 |
AniNest
|
10년 전 | 2761 | |
| 7600 |
port443
|
10년 전 | 997 | |
| 7599 | 10년 전 | 918 | ||
| 7598 | 10년 전 | 990 | ||
| 7597 | 10년 전 | 4551 | ||
| 7596 |
SeungYeon
|
10년 전 | 866 | |
| 7595 |
untitled
|
10년 전 | 2390 | |
| 7594 |
프로그래머7
|
10년 전 | 1700 | |
| 7593 |
untitled
|
10년 전 | 2337 | |
| 7592 |
untitled
|
10년 전 | 1910 | |
| 7591 |
untitled
|
10년 전 | 2649 | |
| 7590 |
아리마2001
|
10년 전 | 822 | |
| 7589 | 10년 전 | 1079 | ||
| 7588 |
|
10년 전 | 2898 | |
| 7587 | 10년 전 | 1273 | ||
| 7586 | 10년 전 | 636 | ||
| 7585 | 10년 전 | 1660 | ||
| 7584 | 10년 전 | 1392 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1135 | |
| 7582 |
|
10년 전 | 1072 | |
| 7581 | 10년 전 | 1302 | ||
| 7580 | 10년 전 | 943 | ||
| 7579 |
|
10년 전 | 582 | |
| 7578 | 10년 전 | 1397 | ||
| 7577 |
|
10년 전 | 1851 | |
| 7576 | 10년 전 | 1368 | ||
| 7575 |
멋진남자임
|
10년 전 | 1447 | |
| 7574 | 10년 전 | 2086 | ||
| 7573 | 10년 전 | 3217 | ||
| 7572 | 10년 전 | 745 | ||
| 7571 |
|
10년 전 | 771 | |
| 7570 |
|
10년 전 | 1293 | |
| 7569 | 10년 전 | 1523 | ||
| 7568 |
this1mg
|
10년 전 | 1022 | |
| 7567 |
|
10년 전 | 729 | |
| 7566 | 10년 전 | 895 | ||
| 7565 |
Angel하늘
|
10년 전 | 965 | |
| 7564 |
seoldi
|
10년 전 | 1203 | |
| 7563 |
|
10년 전 | 1350 | |
| 7562 |
멋진남자임
|
10년 전 | 2046 | |
| 7561 | 10년 전 | 681 | ||
| 7560 |
leeleeleelee
|
10년 전 | 880 | |
| 7559 | 10년 전 | 5010 | ||
| 7558 |
RinaP
|
10년 전 | 754 | |
| 7557 |
|
10년 전 | 1219 | |
| 7556 | 10년 전 | 1170 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1634 | |
| 7554 | 10년 전 | 1073 | ||
| 7553 |
senseme
|
10년 전 | 1321 | |
| 7552 |
ehdltdoit
|
10년 전 | 1413 | |
| 7551 |
|
10년 전 | 1796 | |
| 7550 |
leeleeleelee
|
10년 전 | 1563 | |
| 7549 | 10년 전 | 2394 | ||
| 7548 | 10년 전 | 1814 | ||
| 7547 |
멋진남자임
|
10년 전 | 1927 | |
| 7546 | 10년 전 | 965 | ||
| 7545 |
ILMare1003
|
10년 전 | 1257 | |
| 7544 |
|
10년 전 | 1211 | |
| 7543 | 10년 전 | 863 | ||
| 7542 | 10년 전 | 636 | ||
| 7541 |
울라라라우
|
10년 전 | 849 | |
| 7540 | 10년 전 | 1580 | ||
| 7539 | 10년 전 | 901 | ||
| 7538 |
|
10년 전 | 1813 | |
| 7537 | 10년 전 | 3588 | ||
| 7536 |
Gaumi
|
10년 전 | 1386 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1243 | |
| 7534 |
senseme
|
10년 전 | 1192 | |
| 7533 | 10년 전 | 1172 | ||
| 7532 | 10년 전 | 834 | ||
| 7531 | 10년 전 | 2027 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기