OS のインポート
インポート時間
# 1. バックアップするファイルとディレクトリをリストで指定します。
#source=['/home/swaroop/byte','/home/swaroop/bin']
source= ['D:\FileCopier\*.*','D:\jeecms_doc\*.*']
# Windows を使用している場合は、source=[r'C:Documents',r'D:Work' を使用してください] とか
# 2. バックアップはメインのバックアップ ディレクトリに保存する必要があります
#target_dir='/mnt/e/backup/' #これを使用するディレクトリに変更することを忘れないでください
target_dir='E: \temp\' #これを使用するものに変更することを忘れないでください
# 3. ファイルは zip ファイルにバックアップされます
# 4. zip アーカイブの名前は現在の日付と時刻です
target=target_dir+time.strftime('%Y%m% d%H%M%S')+'.zip'
# 5. zip コマンド (Unix/Linux の場合) を使用して、ファイルを zip アーカイブに入れます
#zip_command="zip -qr '%s' %s" %(target,' '.join) (source))
zip_command="rar a " + target + ' '.join(source)
# バックアップを実行します
if os.system(zip_command)==0:
print 'Successfulバックアップ先',target
else:
print 'バックアップ失敗'