Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux中如何獲得配置文件的絕對路徑

Linux中如何獲得配置文件的絕對路徑

日期:2017/2/7 16:56:30      編輯:Linux教程

  Linux程序通常會有配置文件,如果配置文件采用了相對路徑,例如:"../src/config.xml"

  那麼在當前路徑下,執行沒有問題;

  如果換到其他路徑,執行就出現問題,找不到該文件;

  在編寫腳本的時候,就必須首先cd 到執行文件所在路徑,然後再執行;

  如果要消除這個影響,又不能寫死了路徑,那麼就需要將相對路徑,變換為絕對路徑;

  步驟:

  1. 首先,取得程序所在的路徑;

  2. 加上相對路徑,那麼就取得絕對路徑;

  請注意:不是當前路徑,getcwd可以取得當前路徑;而不是程序的絕對路徑;我當時犯過這個錯誤!

  下面介紹,取得程序所在的路徑的方法:

  方法1. 如果不在意可能安全隱患,可以使用procfs,然後readlink,把當前進程的pid對應的目錄下面的file指向的位置讀出來(注意需要先掛載procfs)

  pit_t   mypid   =   getpid();

  sprintf(strsrc,   "/proc/%d/file",   mypid);

  readlink(strsrc,   strdest,   LEN);//LEN最好是你的_POSIX_PATH_MAX

  方法2. 使用realpath函數,然後dirname;最後拼接出配置文件絕對路徑;

  char path[PATH_MAX];

  char *rpath = realpath(argv[0], path);

  LOG_IT(LOG_MAIN, LOG_DEBUG, "argv[0]: %s, realpath %s", argv[0], rpath);

  char* base = basename(path);

  char* dir = dirname(path);

  LOG_IT(LOG_MAIN, LOG_DEBUG, "base: %s, dir %s", base, dir);

  char conf_file[2048];

  int maxlen_conf = 2048;

  snprintf(conf_file, maxlen_conf, "%s/%s", dir, "../src/config.xml");

  LOG_IT(LOG_MAIN, LOG_DEBUG, "conf_file %s", conf_file);

Copyright © Windows教程網 All Rights Reserved