python 의 os 와 sys

2215 단어 linuxunixpythonOSUP
http://linux.chinaitlab.com/manual/python_chinese/ch14.html
backup------------
#!/usr/bin/python
# Filename: backup_ver1.py

import os
import time

# 1. The files and directories to be backed up are specified in a list.
source = ['/home/swaroop/byte', '/home/swaroop/bin']
# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that

# 2. The backup must be stored in a main backup directory
target_dir = '/mnt/e/backup/' # Remember to change this to what you will be using

# 3. The files are backed up into a zip file.
# 4. The name of the zip archive is the current date and time
target = target_dir + time.strftime('%Y%m%d%H%M%S') + '.zip'

# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))

# Run the backup
if os.system(zip_command) == 0:
    print 'Successful backup to', target
else:
    print 'Backup FAILED' 

------------------
    os. name 문자열 은 사용 하고 있 는 플랫폼 을 표시 합 니 다.예 를 들 어 윈도 에 대해 서 는 'nt' 이 고 리 눅 스 / 유 닉 스 사용자 에 게 는 'posix' 입 니 다.
    os. getcwd () 함 수 는 현재 작업 디 렉 터 리, 즉 현재 Python 스 크 립 트 작업 의 디 렉 터 리 경 로 를 가 져 옵 니 다.
    os. getenv () 와 os. putnv () 함 수 는 각각 환경 변 수 를 읽 고 설정 합 니 다.
    os. listdir () 는 지정 한 디 렉 터 리 의 모든 파일 과 디 렉 터 리 이름 을 되 돌려 줍 니 다.
    os. remove () 함 수 는 파일 을 삭제 하 는 데 사 용 됩 니 다.
    os. system () 함 수 는 셸 명령 을 실행 하 는 데 사 용 됩 니 다.
    os. linesep 문자열 은 현재 플랫폼 에서 사용 하 는 줄 종료 자 를 보 여 줍 니 다.예 를 들 어 윈도 우 는 '\ r', 리 눅 스 는 ', 맥 은' \ r '를 사용한다.
    os. path. split () 함수 가 경로 의 디 렉 터 리 이름과 파일 이름 을 되 돌려 줍 니 다.
    >>> os.path.split('/home/swaroop/byte/code/poem.txt')
    ('/home/swaroop/byte/code', 'poem.txt')
    os. path. isfile () 과 os. path. isdir () 함수 가 제 시 된 경로 가 파일 인지 디 렉 터 리 인지 각각 검사 합 니 다.유사 하 게 os. path. existe () 함 수 는 주어진 경로 가 실제로 존재 하 는 지 검증 하 는 데 사 용 됩 니 다.

좋은 웹페이지 즐겨찾기