博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows和linux下获取当前程序路径以及cpu数
阅读量:5924 次
发布时间:2019-06-19

本文共 1121 字,大约阅读时间需要 3 分钟。

[cpp] 
 
  1. #ifdef WIN32  
  2. #include <Windows.h>  
  3. #else  
  4. #include <stdio.h>  
  5. #include <unistd.h>  
  6. #endif  
  7.   
  8. #include <assert.h>  
  9.   
  10.     std::string getCurrentAppPath()  
  11.     {  
  12. #ifdef WIN32  
  13.         char path[MAX_PATH + 1] = {0};  
  14.         if (GetModuleFileName(NULL, path, MAX_PATH) != 0)  
  15.             return std::string(path);  
  16. #else  
  17.         char path[256] = {0};  
  18.         char filepath[256] = {0};  
  19.         char cmd[256] = {0};  
  20.         FILE* fp = NULL;  
  21.   
  22.         // 设置进程所在proc路径  
  23.         sprintf(filepath, "/proc/%d", getpid());  
  24.         // 将当前路径设为进程路径  
  25.         if(chdir(filepath) != -1)  
  26.         {  
  27.             //指定待执行的shell 命令  
  28.             snprintf(cmd, 256, "ls -l | grep exe | awk '{print $10}'");  
  29.             if((fp = popen(cmd,"r")) == NULL)  
  30.             {  
  31.                 return std::string();  
  32.             }  
  33.             //读取shell命令执行结果到字符串path中  
  34.             if (fgets(path, sizeof(path)/sizeof(path[0]), fp) == NULL)  
  35.             {  
  36.                 pclose(fp);  
  37.                 return std::string();  
  38.             }  
  39.   
  40.             //popen开启的fd必须要pclose关闭  
  41.             pclose(fp);  
  42.             return std::string(path);  
  43.         }  
  44. #endif  
  45.         return std::string();  
  46.     }  
  47.   
  48.     std::size_t getCpuCount()  
  49.     {  
  50. #ifdef WIN32  
  51.         SYSTEM_INFO sysInfo;  
  52.         GetSystemInfo(&sysInfo);  
  53.         return sysInfo.dwNumberOfProcessors;  
  54. #else  
  55.         long cpu_num = sysconf(_SC_NPROCESSORS_ONLN);  
  56.         if (cpu_num == -1)  
  57.         {  
  58.             assert(false);  
  59.             return 0;  
  60.         }  
  61.         // 看两者是否相等  
  62.         assert(cpu_num == sysconf(_SC_NPROCESSORS_CONF));  
  63.         return cpu_num;  
  64. #endif  
  65.     }  

转载地址:http://xqxvx.baihongyu.com/

你可能感兴趣的文章
lvs+keepalive 比较详细的安装配置文档
查看>>
什么是Gratuitous ARP
查看>>
Dynamic ARP Inspection(DAI)动态ARP检测
查看>>
业务表构建中一些特殊字符作为列名的构建示例
查看>>
oracle11gRAC环境使用RMAN备份方案
查看>>
JavaScript基础之程序流程的三大结构
查看>>
shell的详细介绍和编程(中)
查看>>
nginx+fastcgi+mono 环境搭建
查看>>
【2010强悍教程】一次性永远激活7290自带浏览器上网和彩信收发功能,不能上网的进。...
查看>>
【路由策略与策略路由的区别】
查看>>
vSphere HA
查看>>
tracertroute原理
查看>>
Mysql存储过程编写
查看>>
使用zabbix模板监控tomcat-解决模板部分监控项不生效问题
查看>>
Myslq 启动报错The server quit without updating PID file
查看>>
tomcat
查看>>
memcached安装配置
查看>>
2013年下半年信息系统项目管理师考试试卷(回忆版)
查看>>
我的友情链接
查看>>
为什么很多大学生毕业后都说大学所学知识无用?
查看>>