티스토리 뷰
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 | function recurse_copy($src,$dst,$overwrite=TRUE) { $dir = opendir($src); @mkdir($dst); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) ) { recurse_copy($src . '/' . $file,$dst . '/' . $file, $overwrite); } else { if($overwrite) { copy($src . '/' . $file,$dst . '/' . $file); } else { if(!is_file($dst . '/' . $file)){ copy($src . '/' . $file,$dst . '/' . $file); } } } } } closedir($dir); } function recurse_mkdir($dir) { $dir = trim($dir); $subDir = explode('/', $dir); $tempDir = ""; foreach($subDir as $val){ $tempDir .= "/".$val; if(!is_dir($tempDir)){ @mkdir($tempDir); } } } | cs |
'프로그래밍' 카테고리의 다른 글
ASP UTF-8 파일 읽고 출력 (0) | 2016.12.07 |
---|---|
ASP 유용한 사용자 정의 함수 (0) | 2016.12.07 |
airspeed를 사용한 템플릿 설정 관리 (0) | 2016.10.19 |
pyparsing을 사용한 bacula 설정 파서 (0) | 2016.10.19 |
pyparsing을 사용한 json 파서 (0) | 2016.10.18 |
댓글
warpmemory
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
페이지
TAG
- configuration
- Linux
- limits
- error
- PowerShell
- Web
- Windows
- mysql
- client
- 예제
- command
- apache
- deview
- 외부링크
- Module
- 명령어
- example
- MariaDB
- 코드
- 이슈처리
- engineering
- 번역
- check
- File
- Python
- monitoring
- Ansible
- httpd
- RESTful
- code
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함