파일 썸네일형 리스트형 [Python] 파일 읽고 쓰기 # _*_ coding: utf8 _*_ with open({file_path}, {file_mode}) as fp:fp.write('Hello World')fp.close() 파일 모드r - 파일 읽기만 할 경우w - 파일에 내용 쓸때a - 기존 파일에 새로운 내용 추가시 더보기 [Apache] 파일 실행 막기 AddType application/x-httpd-php-source .php .php3 .phtml .js .bak .inc .class .htm .html .txt Order allow,deny Deny from all 위 설정을 이용해주게 되면 해당 폴더의 추가된 타입의 파일에 대한 실행을 막아줌. 더보기 [Linux] 특정 파일 삭제 find /path/to/destdir -name '[find_name]' -exec rm -r {} \; 더보기 이전 1 2 3 4 5 다음