DeepForge-Tech / DeepForge-Toolset

DeepForge Toolset - cross-platform installer of necessary tools for programming.
GNU General Public License v3.0
3 stars 2 forks source link

Образец перемещения файла #16

Closed Blackflame576 closed 1 year ago

Blackflame576 commented 1 year ago

`#include

include

int main() { try { std::filesystem::copy("from.txt", "to.txt"); std::filesystem::remove("from.txt"); } catch (std::filesystem::filesystem_error& e) { std::cout << e.what() << '\n'; } return 0; }`