代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C#
】
读取批处理文件(.bat)执行结果到程序显示
作者:
google2014
/ 发布于
2017/2/4
/
660
public static string ExcuteBatFile(string batPath, ref string errMsg) { if (errMsg == null) throw new ArgumentNullException("errMsg"); string output; using (Process process = new Process()) { FileInfo file = new FileInfo(batPath); if (file.Directory != null) { process.StartInfo.WorkingDirectory = file.Directory.FullName; } process.StartInfo.FileName = batPath; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError = true; process.StartInfo.UseShellExecute = false; process.StartInfo.CreateNoWindow = true; process.Start(); process.WaitForExit(); output = process.StandardOutput.ReadToEnd(); errMsg = process.StandardError.ReadToEnd(); } return output; } 使用方法: var bat = System.Threading.Thread.GetDomain().BaseDirectory + "temp.bat"; string path = bat; string errMsg = string.Empty; string output = ExcuteBatFile(path, ref errMsg);
试试其它关键字
同语言下
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
可能有用的
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
google2014
贡献的其它代码
(
19
)
.
移动端根据百度地图api获取详细地址
.
实现任意字符串的反转功能
.
用一张表更新其他表的数据
.
读取批处理文件(.bat)执行结果到程序显示
.
寻找当前字符串最大回文串
.
GridView支持复制与粘贴
.
求 s=a+aa+aaa+aaaa+aa...a 的值
.
判断字符串是否为纯数字
.
比较两个数据库中表和字段的差异
.
单击dataGridView内容 获取该行数据
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3