윈도우 리눅스 공용입니다.
단 윈도우의 경우에는 소유권, 그룹정보는 가져오지 못합니다.
여러가지 활요예가 있겠지만
이런경우에 유용합니다.
압축을 하고 전혀 다른 계정에 압축을 풀었을때
퍼미션이나 소유권 문제때문에 고민할때 사용하면 유용합니다.
이하 소스입니다.
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년 전 | 658 | ||
| 7629 |
|
10년 전 | 2401 | |
| 7628 | 10년 전 | 796 | ||
| 7627 |
|
10년 전 | 1040 | |
| 7626 |
|
10년 전 | 1795 | |
| 7625 | 10년 전 | 720 | ||
| 7624 | 10년 전 | 737 | ||
| 7623 |
|
10년 전 | 3105 | |
| 7622 | 10년 전 | 737 | ||
| 7621 |
leeleeleelee
|
10년 전 | 591 | |
| 7620 | 10년 전 | 543 | ||
| 7619 | 10년 전 | 497 | ||
| 7618 | 10년 전 | 1033 | ||
| 7617 | 10년 전 | 731 | ||
| 7616 | 10년 전 | 659 | ||
| 7615 | 10년 전 | 732 | ||
| 7614 | 10년 전 | 1271 | ||
| 7613 |
|
10년 전 | 2086 | |
| 7612 | 10년 전 | 1158 | ||
| 7611 | 10년 전 | 1426 | ||
| 7610 |
|
10년 전 | 1909 | |
| 7609 |
|
10년 전 | 1360 | |
| 7608 |
mwdkim
|
10년 전 | 1139 | |
| 7607 |
|
10년 전 | 1064 | |
| 7606 |
mwdkim
|
10년 전 | 3941 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1033 | ||
| 7603 | 10년 전 | 1658 | ||
| 7602 |
|
10년 전 | 1082 | |
| 7601 |
AniNest
|
10년 전 | 2798 | |
| 7600 |
port443
|
10년 전 | 1040 | |
| 7599 | 10년 전 | 951 | ||
| 7598 | 10년 전 | 1029 | ||
| 7597 | 10년 전 | 4582 | ||
| 7596 |
SeungYeon
|
10년 전 | 899 | |
| 7595 |
untitled
|
10년 전 | 2431 | |
| 7594 |
프로그래머7
|
10년 전 | 1742 | |
| 7593 |
untitled
|
10년 전 | 2386 | |
| 7592 |
untitled
|
10년 전 | 1951 | |
| 7591 |
untitled
|
10년 전 | 2682 | |
| 7590 |
아리마2001
|
10년 전 | 859 | |
| 7589 | 10년 전 | 1117 | ||
| 7588 |
|
10년 전 | 2926 | |
| 7587 | 10년 전 | 1312 | ||
| 7586 | 10년 전 | 676 | ||
| 7585 | 10년 전 | 1703 | ||
| 7584 | 10년 전 | 1416 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1170 | |
| 7582 |
|
10년 전 | 1124 | |
| 7581 | 10년 전 | 1362 | ||
| 7580 | 10년 전 | 1014 | ||
| 7579 |
|
10년 전 | 611 | |
| 7578 | 10년 전 | 1434 | ||
| 7577 |
|
10년 전 | 1879 | |
| 7576 | 10년 전 | 1392 | ||
| 7575 |
멋진남자임
|
10년 전 | 1471 | |
| 7574 | 10년 전 | 2127 | ||
| 7573 | 10년 전 | 3262 | ||
| 7572 | 10년 전 | 765 | ||
| 7571 |
|
10년 전 | 786 | |
| 7570 |
|
10년 전 | 1322 | |
| 7569 | 10년 전 | 1557 | ||
| 7568 |
this1mg
|
10년 전 | 1055 | |
| 7567 |
|
10년 전 | 771 | |
| 7566 | 10년 전 | 921 | ||
| 7565 |
Angel하늘
|
10년 전 | 1015 | |
| 7564 |
seoldi
|
10년 전 | 1253 | |
| 7563 |
|
10년 전 | 1395 | |
| 7562 |
멋진남자임
|
10년 전 | 2095 | |
| 7561 | 10년 전 | 717 | ||
| 7560 |
leeleeleelee
|
10년 전 | 919 | |
| 7559 | 10년 전 | 5056 | ||
| 7558 |
RinaP
|
10년 전 | 791 | |
| 7557 |
|
10년 전 | 1256 | |
| 7556 | 10년 전 | 1200 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1672 | |
| 7554 | 10년 전 | 1101 | ||
| 7553 |
senseme
|
10년 전 | 1343 | |
| 7552 |
ehdltdoit
|
10년 전 | 1442 | |
| 7551 |
|
10년 전 | 1833 | |
| 7550 |
leeleeleelee
|
10년 전 | 1596 | |
| 7549 | 10년 전 | 2435 | ||
| 7548 | 10년 전 | 1851 | ||
| 7547 |
멋진남자임
|
10년 전 | 1969 | |
| 7546 | 10년 전 | 1011 | ||
| 7545 |
ILMare1003
|
10년 전 | 1298 | |
| 7544 |
|
10년 전 | 1259 | |
| 7543 | 10년 전 | 895 | ||
| 7542 | 10년 전 | 665 | ||
| 7541 |
울라라라우
|
10년 전 | 873 | |
| 7540 | 10년 전 | 1603 | ||
| 7539 | 10년 전 | 944 | ||
| 7538 |
|
10년 전 | 1837 | |
| 7537 | 10년 전 | 3620 | ||
| 7536 |
Gaumi
|
10년 전 | 1419 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1282 | |
| 7534 |
senseme
|
10년 전 | 1210 | |
| 7533 | 10년 전 | 1208 | ||
| 7532 | 10년 전 | 869 | ||
| 7531 | 10년 전 | 2063 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기