我想將文件從一個位置複製到使用C程序的不同位置,任何一個可以給我一個提示,我該怎麼辦呢?C程序將文件複製到一個位置
我成爲這個,我不知道,即時通訊使用代碼塊編譯和編寫程序。
// Please help me out... I have only included some files such as:
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <dir.h>
#include <dos.h>
#include <io.h>
int main()
{
}
幫幫我。
最終你可以以某種方式調用unix'cp'命令... – evotopid 2012-04-03 15:40:27
你想使用系統調用嗎?如果不是,您可以打開要複製的文件,在所需的目錄中用相同的名稱創建一個新文件,讀取第一個文件中的所有數據並將其寫入第二個文件。這個http://www.cplusplus.com/reference/clibrary/cstdio/FILE/顯示瞭如何使用'stdout'來完成,你必須改變到另一個文件。 – twain249 2012-04-03 15:44:55
也許在Windows上,(dos.h)。除非你仍然在Windows 95上,否則轉儲該dos.h幷包含windows.h。調用copyfile()API。 – 2012-04-03 15:45:43