-3
使用窗口將文件移動到另一個位置的簡單代碼10 visual studio C++ 2015.在窗口中如何將文件從一個位置移動到另一個位置。將文件從一個位置移動到窗口中的另一個位置C++
我在位置D:\ data.txt有一個文本文件。我想將它的位置更改爲C:\ total data \ data.txt。
#include <cstdio>
int main (void)
{
std::rename ("old_name", "new_name");
return 0;
}
我已經使用了使用移動重命名機能的研究,但它不工作的進一步的細節https://bytes.com/topic/c/answers/132322-file-move-programmatically
正是我要改變文件的位置。
不作品#包括 INT主(無效) { 的std ::重命名( 「OLD_NAME」, 「NEW_NAME」); return 0; } –
請在您的文章中添加更多信息。理想情況下提供[MCVE]。 –
請比「不行」更具體。 – molbdnilo