AW封装Python 操作
时间: 2023-07-02 16:09:42 浏览: 306
AW(Automation Workshop)是一款用于自动化任务的软件,它支持Python脚本,并且提供了Python模块,可以用Python编写AW任务。下面是一些Python操作的示例:
1. 运行cmd命令
```python
import subprocess
subprocess.run(["cmd", "/c", "dir"])
```
2. 复制文件
```python
import shutil
shutil.copyfile('源文件路径', '目标文件路径')
```
3. 读取文本文件
```python
with open('文件路径', 'r') as f:
content = f.read()
```
4. 写入文本文件
```python
with open('文件路径', 'w') as f:
f.write('写入的内容')
```
5. 发送邮件
```python
import smtplib
from email.mime.text import MIMEText
from email.header import Header
# 邮件内容
message = MIMEText('邮件内容', 'plain', 'utf-8')
message['From'] = Header('发送人', 'utf-8')
message['To'] = Header('接收人', 'utf-8')
message['Subject'] = Header('邮件主题', 'utf-8')
# 发送邮件
smtp_server = 'smtp.gmail.com'
smtp_port = 587
username = '发件人邮箱'
password = '发件人邮箱密码'
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(username, password)
server.sendmail(username, ['收件人邮箱'], message.as_string())
server.quit()
```
以上是一些Python操作的示例,可以帮助你更好地使用AW自动化任务。
阅读全文