文件名称:c++通用库针对不同平台封装(win)
文件大小:29KB
文件格式:ZIP
更新时间:2021-08-18 07:08:06
c++ win32 linux
只列出了一个头文件(WinUtils.h),详情看代码 //检测进程是否运行中 返回[运行中进程数量] 有多个 int checkProcess(std::string name); //通过路径和名称检测进程是否运行中 返回[运行中/非运行中] 只有一个 bool checkProcess(std::string path, std::string name); //通过PID检测进程是否运行中 返回[运行中/非运行中] 只有一个 bool checkProcessById(unsigned long pid); //启动进程 返回[进程pid/0] int startProcess(std::string path, std::string name); //服务启动程序 bool startProcessAsUser(std::string path, std::string name); //杀掉所有进程名为 name 的进程 杀掉所有 bool killProcessByName(std::string name); //杀掉指定进程pid 为 pid 的进程 杀掉一个 bool killProcessById(unsigned long pid); //杀死指定路径的进程 杀掉一个 bool killProcessByPath(std::string path, std::string file); //尝试连接 返回[成功/失败] bool ConnectTest(std::string ip, int port); //获取当前程序的路径 void getCurrencyPath(char* path); //获取当前程序的路径 std::string getCurrencyPath(); //获取当前程序的路径 std::wstring getCurrencyPathW(); //输出日志 void Log(std::string info, std::string path = "", LogLevel level = LogLevel::LOG_INFO,bool format = true); void Log(std::string info, LogLevel level); //检测Dll是否存在 bool checkDllExist(const char *name); //屏幕截图 std::string ScreenShot();
【文件预览】:
LibUtils.vcxproj
LibUtils.vcxproj.filters
Classes
----WinUtils.h(1KB)
----Image()
--------CutImage.cpp(9KB)
--------CutImage.h(553B)
--------ImageDefine.h(148B)
----define.h(397B)
----Net()
--------SmtpUtil.h(2KB)
--------SmtpUtil.cpp(11KB)
----Utils.h(2KB)
----Utils.cpp(9KB)
----ajson.hpp(39KB)
----Timer()
--------Timer.h(1KB)
--------Timer.cpp(1KB)
----WinUtils.cpp(13KB)
----DB()
LibUtils.vcxproj.user