MT4读取文件函数

楼主  收藏   举报   帖子创建时间:  2019-05-05 14:33 回复:0 关注量:219
void ReadFile()
   {
    int cmd = 0;
    string str = "";
    int handle=FileOpen("TradeCopy.csv",FILE_READ|FILE_CSV);
    if (handle>0)
     {
      while(FileIsEnding(handle)==false)
       {
        str = FileReadString(handle);
        if (str!="")
         {
          lines[cmd] = str;
          cmd ++;
         }
       }
     FileClose(handle);
    }
    else
     Print("Chyba pri otvarani : ",GetLastError());
  }
打赏