0
我是在Metatrader中使用.dll的新手。我正在嘗試執行文件複製.dll。在我的頭,我有以下:複製文件dll調用不工作在Metatrader
#import "Kernel32.dll"
bool CopyFileA (string source_file, string destination_file, bool if_exist);
在我的init(),用於測試目的,我有以下幾點:
bool check = true;
check = CopyFileA ("c:\test.txt", "c:\Temp\test.txt", true);
Alert(check);
我已經啓用「允許導入DLL」,在選項/專家顧問。所以我初始化爲真(所以我知道它正在執行檢查),但它總是返回false。當然,我已經確定test.txt存在以及C驅動器上的Temp文件夾。
我曾經嘗試都爲回溯測試,並把對前測試的圖表上,但它始終返回false
上爲什麼發生這種情況有什麼建議?我相信這是明顯的,但就像我說的,對於.dll來說是新的。提前致謝。
感謝您的信息,我給它看看。 – chemnteach