Skip to content

easy-window/Shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Execute Program Libraries

A library for execute program.

Usage

#include "Shell.h"
using namespace Easy;

CString sProgram = _T("C:\\Windows\\system32\\cmd.exe");
CString sArgv = _T("/c date /t");

Shell shell;
shell.Execute(sProgram, sArgv, Shell::CONSOLE);
while(shell.IsRunning()) Sleep(100);
shell.GetOutput(); // 2020/06/23 Thu 

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages