コマンドプロンプトを叩いたようにコマンドを実行するPython。
# coding:utf-8
import os
cmd = "ipconfig /all > D:\\ipconfig.txt"
os.system(cmd)
cmd = "tree D:\\Doc /f > D:\\tree.txt"
os.system(cmd)
実行ファイルにすれば.batみたいに配布できる。
もっと賢い書き方があったら教えて下さい。
いじょ
Go to list of users who liked
More than 5 years have passed since last update.
コマンドプロンプトを叩いたようにコマンドを実行するPython。
# coding:utf-8
import os
cmd = "ipconfig /all > D:\\ipconfig.txt"
os.system(cmd)
cmd = "tree D:\\Doc /f > D:\\tree.txt"
os.system(cmd)
実行ファイルにすれば.batみたいに配布できる。
もっと賢い書き方があったら教えて下さい。
いじょ
Register as a new user and use Qiita more conveniently
Go to list of users who liked