• 大小: 173KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-25
  • 语言: Python
  • 标签: ABAQUS  二次开发  

资源简介

ABAQUS的二次开发Python教程,教程包括语言和例子

资源截图

代码片段和文件信息

#!/usr/bin/env 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‘


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6056  2005-02-17 12:51  python\apa.html

     文件       2296  2005-02-17 12:51  python\apb.html

     文件       1625  2005-02-17 12:51  python\apbs02.html

     文件       1531  2005-02-17 12:51  python\apbs03.html

     文件       3094  2005-02-17 12:51  python\apbs04.html

     文件       4348  2005-02-17 12:51  python\apc.html

     文件       5528  2005-02-17 12:51  python\apcs02.html

     文件       2273  2005-02-17 12:51  python\ch01.html

     文件       4488  2005-02-17 12:51  python\ch01s02.html

     文件       2630  2005-02-17 12:51  python\ch01s03.html

     文件       2429  2005-02-17 12:51  python\ch01s04.html

     文件       2784  2005-02-17 12:51  python\ch02.html

     文件       2442  2005-02-17 12:51  python\ch02s02.html

     文件       1449  2005-02-17 12:51  python\ch02s03.html

     文件       1960  2005-02-17 12:51  python\ch03.html

     文件       2546  2005-02-17 12:51  python\ch03s02.html

     文件       2975  2005-02-17 12:51  python\ch03s03.html

     文件       3893  2005-02-17 12:51  python\ch03s04.html

     文件       3179  2005-02-17 12:51  python\ch03s05.html

     文件       2449  2005-02-17 12:51  python\ch03s06.html

     文件       1317  2005-02-17 12:51  python\ch03s07.html

     文件       2436  2005-02-17 12:51  python\ch04.html

     文件       1577  2005-02-17 12:51  python\ch04s02.html

     文件       4664  2005-02-17 12:51  python\ch04s03.html

     文件       1539  2005-02-17 12:51  python\ch04s04.html

     文件       1980  2005-02-17 12:51  python\ch04s05.html

     文件       1406  2005-02-17 12:51  python\ch04s06.html

     文件       3569  2005-02-17 12:51  python\ch04s07.html

     文件       3403  2005-02-17 12:51  python\ch04s08.html

     文件       2909  2005-02-17 12:51  python\ch04s09.html

............此处省略132个文件信息

评论

共有 条评论