Qt程序设计-运行脚本文件.bat
本文演示如何实现Qt运行脚本文件.bat
创建一个脚本文件
在D盘,新建一个test.txt文件,将下面的拷入,然后更改后缀名称为bat
@echo off
set filename=newfile.txt
if not exist %filename% (echo This is a new file > %filename%
) else (echo File already exists!
)
这段脚本会首先判断指定名称的文件是否存在。如果不存在,则会创建该文件并写入内容"This is a new file";如果已经存在,则输出提示信息"File already exists!"。
创建窗体的程序
添加一个按钮
头文件为
#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include <