#include <iostream>
#include <string>


int main() {
	const char *file_path = "D:/MyFolder/YetAnotherFolder/test.txt";
    std::string file_bk_path = std::string(file_path) + ".bk";
    std::cout << file_bk_path << "\n";
	return 0;
}