pyhthon中的os模块讲解

import  os      #导入os操作模块

# 系统目录间的分隔符,
#       Linux: /var/log/messages
#       Windows: C:\\Project\hello.py
import itchat

print(os.path.sep)

# 在Linux里面执行shell命令
#   1. 第一种方式: 可以判断命令是否执行成功; 返回值为0, 执行成功, 返回值不为0, 执行失败
res = os.system('hostnam1e')
print("res:", res)

#  2. 第二种方式: 用来保存命令的执行结果
res = os.popen('hostname').read()
print("res:", res)

@itchat.msg_register(itchat.content.TEXT)
def text_reply(msg):
    # 需求: 当文件助手发送消息, 执行发送的内容,
    #           1).  如果执行成功, 【显示执行成功】:执行结果
    #           2). 反之, 显示之心失败 .
    # print(msg)
    if msg['ToUserName'] == 'filehelper':
        # 获取要执行命令的内容
        command = msg['Content']
        # print(command)
        #  让电脑执行命令代码
        #  如果执行成功, 返回值为0
        if os.system(command) == 0:
            res = os.popen(command).read()
            result =  "【返回值】- 命令执行成功, 执行结果:\n" + res
            itchat.send(result, 'filehelper')
        # 命令执行失败, 请重新输入命令
        else:
            result =   "【返回值】- 命令%s执行失败, 请重试" %(command)
            itchat.send(result, 'filehelper')
if __name__ == "__main__":
    itchat.auto_login(hotReload=True)
    itchat.run()

执行结果如下:
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值