linux 获取当前程序路径

const std::string strCfgName = "logger_import_db.conf" ;
bool fGetCfgFileName(std::string& paraStr_CfgFileName)
{
paraStr_CfgFileName.clear() ;
char szWorkDir[MAX_PATH] = {0} ;
char szCfgFileNameTemp[MAX_PATH] = {0} ;
if(!getcwd(szWorkDir, 260))
{
return false ;
}

paraStr_CfgFileName = szWorkDir ;
paraStr_CfgFileName.append("/") ;
paraStr_CfgFileName.append(strCfgName) ;

return true ;
}

原文地址:https://www.cnblogs.com/wangjian8888/p/8601099.html

时间: 2024-10-22 06:08:43

linux 获取当前程序路径的相关文章

获取当前程序路径

1. 本来想用java中的方式的,网上查到一些信息,我的测试代码如下: 1 String str = System.getProperty("java.class.path"); 2 String strUsrDir = System.getProperty("usr.dir"); 3 URL url = this.getClass().getResource(""); // **Test1.class 即 Class.forName("

WPF获取应用程序路径方法,获取程序运行路径方法

试了好多种方法,在WPF中获取工程的路径都没能解决掉,暂时用的绝对路径"D://WPF.....",但是发布的时候出现问题了,放到别的电脑上找不到路径,又开始了地毯式搜索,终于解决了,跟遇到此类问题的朋友分享下解决办法,如下: AppDomain.CurrentDomain.BaseDirectory +文件名即可,简单吧? //获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称. string str5=Application.StartupPath; //可获得当前执行的

【C#遗补】获取应用程序路径之System.IO.Directory.GetCurrentDirectory和System.Windows.Forms.Application.StartupPath的区别

原文:[C#遗补]获取应用程序路径之System.IO.Directory.GetCurrentDirectory和System.Windows.Forms.Application.StartupPath的区别 .Net Framework中,System.IO.Directory.GetCurrentDirectory()方法用于获得应用程序当前工作目录 如果使用此方法获得应用程序所在的目录,应该注意:System.IO.Directory.GetCurrentDirectory()方法获得的

Linux获取两个路径之间的相对路径

获取两个路径之间的相对路径是一个很常见的问题,在Linux中怎么实现呢? 为了进行隔离,整个项目是用chroot跑的,有一次为了在chroot下建一个软链接,又不能用绝对路径,想自动计算一个路径相对于另一个路径的相对路径,怎么办呢? 经过一番搜索后发现,Linux中realpath和ln都有这个功能. realpath realpath [OPTION]... FILE... --relative-to=FILE print the resolved path relative to FILE

windows和linux下获取当前程序路径以及cpu数

[cpp] view plaincopy #ifdef WIN32 #include <Windows.h> #else #include <stdio.h> #include <unistd.h> #endif #include <assert.h> std::string getCurrentAppPath() { #ifdef WIN32 char path[MAX_PATH + 1] = {0}; if (GetModuleFileName(NULL

GetModuleFileNameEx遍历获取64bit程序路径失败的一种解决方法(Win7-64-bit)

问题: 32位程序在64位系统上调用GetModuleFileNameEx()遍历获取64位进程的全路径失败,得到的路径都为空. 根据官方的说法: For the best results use the following table to convert paths. Windows 2000 = GetModuleFileNameEx() Windows XP x32 = GetProcessImageFileName() Windows XP x64 = GetProcessImageF

linux获取文件全路径的方法

获取路径的各种相关方法: 获取文件名: basename /home/cuizhiliang344/note.txt note.txt 获取目录: dirname /home/cuizhiliang344/note.txt /home/cuizhiliang344 通过一个文件获取全路径 方法一: readlink -f  note.txt /home/cuizhiliang344/note.txt 方法二: python -c 'import os; print(os.path.abspath

C#获取应用程序路径

string s = Environment.CurrentDirectory; //需添加Forms.DLL s = System.Windows.Forms.Application.StartupPath; s = System.Windows.Forms.Application.ExecutablePath; s = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; s = System.Reflecti

android获取当前应用程序路径

// 获取当前程序路径 getApplicationContext().getFilesDir().getAbsolutePath(); // 获取该程序的安装包路径 String path=getApplicationContext().getPackageResourcePath(); // 获取程序默认数据库路径 getApplicationContext().getDatabasePath(s).getAbsolutePath();