獲取當前工程目錄下的ini檔案方法

2021-05-23 17:32:22 字數 612 閱讀 2772

cstring strpath,path="";

//獲取當前工程檔案全路徑

getmodulefilename(null,strpath.getbuffersetlength(max_path+1),max_path); 

//釋放獲取的空間,此時strpath裡為工程檔案的全路徑

strpath.releasebuffer();   

//獲取最後乙個「/」的位置

int npos = strpath.reversefind('//'); 

//獲取全路徑

strpath = strpath.left(npos+1);   

//獲取字串的長度

int strlen = strpath.getlength();

//將路徑的單斜槓改為雙斜槓

for (int i=0;i<=strlen-1;i++)

//最後加上ini檔名

path += "parameters.ini";

cstring cs;

cs.format("%d",comthick);

::writeprivateprofilestring("公稱壁厚","gcbh",cs,path);

python 獲取當前目錄下的檔案目錄和檔名

os模組下有兩個函式 os.walk os.listdir 1 coding utf 8 23 import os 45 deffile name file dir 6for root,dirs,files in os.walk file dir 7print root 當前目錄路徑 8print ...

makefile 編譯當前目錄下的檔案

makefile 2018 10 23 build all c file 目標檔案 所有的依賴檔案 第乙個依賴檔案。版本號 version v1.0.0 編譯器版本 cc arm none linux gnueabi gcc 指定目錄下的原始檔,srcs wildcard c srcs wildca...

獲取resource目錄下的檔案

工作的時候需要讀取resource目錄下的檔案,在此記錄一種不會因打包方式影響的讀取方法 直接寫路徑有可能會因為打jar包或者打war包而失效 2021 01 11 更新 如果是在spring環境中,可以使用org.springframework.core.io.classpathresource,...