c++获取当前路径

直接上代码吧

#include
#include
#include
using namespace std;
int main()
{
	char* savePath_ = _getcwd(nullptr, 256);
	if (savePath_ != nullptr) {
		string savePath(savePath_);
		savePath.insert(savePath.size(), "/ball.nii.gz");
		cout << savePath << endl;
	}
}

你可能感兴趣的:(c++学习,c++,算法,开发语言)