geek168 发表于 2019-7-31 06:29:35

【MT4学习】MQL4语言基础语法12-文件处理函数 [File Functions]

void FileClose(int handle)
关闭正在已经打开的文件.
:: 输入参数
handle - FileOpen()返回的句柄示例:
int
handle=FileOpen("filename", FILE_CSV|FILE_READ);

if(handle>0)

{

// working with file ...

FileClose(handle);

}


void FileDelete(stringfilename)
删除文件,如果发生错误可以通过GetLastError()来查询
注:你只能操作terminal_dir\experts\files目录下的文件 :: 输入参数
filename - 目录和文件名示例:
// file
my_table.csv will be deleted from terminal_dir\experts\files directory

int lastError;

FileDelete("my_table.csv");

lastError=GetLastError();

if(laseError!=ERR_NOERROR)

{

Print("An error ocurred while (",lastError,") deleting file
my_table.csv");

return(0);

}


void FileFlush(inthandle)
将缓存中的数据刷新到磁盘上去:: 输入参数
handle - FileOpen()返回的句柄示例:
int
bars_count=Bars;

int handle=FileOpen("mydat.csv",FILE_CSV|FILE_WRITE);

if(handle>0)

{

FileWrite(handle,
"#","OPEN","CLOSE","HIGH","LOW");

for(int i=0;i<BARS_COUNT;I++)

FileWrite(handle, i+1,Open,Close,High, Low);

FileFlush(handle);

...

for(int i=0;i<BARS_COUNT;I++)

FileWrite(handle, i+1,Open,Close,High, Low);

FileClose(handle);

}


bool FileIsEnding(inthandle)
检查是否到了文件尾. :: 输入参数
handle - FileOpen()返回的句柄示例:
if(FileIsEnding(h1))

{

FileClose(h1);

return(false);

}


bool FileIsLineEnding(int handle)
检查行是否到了结束 :: 输入参数
handle - FileOpen()返回的句柄示例:
if(FileIsLineEnding(h1))

{

FileClose(h1);

return(false);

}


int FileOpen( stringfilename, int mode, int delimiter=';')
打开文件,如果失败返回值小于1,可以通过GetLastError()获取错误
注:只能操作terminal_dir\experts\files目录的文件 :: 输入参数
filename - 目录文件名
mode - 打开模式 FILE_BIN,FILE_CSV, FILE_READ, FILE_WRITE.
delimiter - CSV型打开模式用的分割符,默认为分号(;).示例:
int
handle;

handle=FileOpen("my_data.csv",FILE_CSV|FILE_READ,';');

if(handle<1)

{

Print("File my_data.dat not found, the last error is ",
GetLastError());

return(false);

}


int FileOpenHistory(string filename, int mode, int delimiter=';')
打开历史数据文件,如果失败返回值小于1,可以通过GetLastError()获取错误 :: 输入参数
filename - 目录文件名
mode - 打开模式 FILE_BIN,FILE_CSV, FILE_READ, FILE_WRITE.
delimiter - CSV型打开模式用的分割符,默认为分号(;).示例:
int
handle=FileOpenHistory("USDX240.HST",FILE_BIN|FILE_WRITE);

if(handle<1)

{

Print("Cannot create file USDX240.HST");

return(false);

}

// work with file

// ...

FileClose(handle);


int FileReadArray( inthandle, object& array[], int start, int count)
将二进制文件读取到数组中,返回读取的条数,可以通过GetLastError()获取错误
注:在读取之前要调整好数组大小 :: 输入参数
handle - FileOpen()返回的句柄
array[] - 写入的数组
start - 在数组中存储的开始点
count - 读取多少个对象示例:
int
handle;

double varray;

handle=FileOpen("filename.dat", FILE_BIN|FILE_READ);

if(handle>0)

{

FileReadArray(handle, varray, 0, 10);

FileClose(handle);

}


double FileReadDouble(int handle, int size=DOUBLE_VALUE)
从文件中读取浮点型数据,数字可以是8byte的double型或者是4byte的float型。 :: 输入参数
handle - FileOpen()返回的句柄
size - 数字个是大小,DOUBLE_VALUE(8bytes) 或者FLOAT_VALUE(4 bytes). 示例:
int
handle;

double value;

handle=FileOpen("mydata.dat",FILE_BIN);

if(handle>0)

{

value=FileReadDouble(handle,DOUBLE_VALUE);

FileClose(handle);

}


int FileReadInteger( inthandle, int size=LONG_VALUE)
从文件中读取整形型数据,数字可以是1,2,4byte的长度 :: 输入参数
handle - FileOpen()返回的句柄
size - 数字个是大小,CHAR_VALUE(1byte), SHORT_VALUE(2 bytes) 或者LONG_VALUE(4 bytes). 示例:
int
handle;

int value;

handle=FileOpen("mydata.dat", FILE_BIN|FILE_READ);

if(handle>0)

{

value=FileReadInteger(h1,2);

FileClose(handle);

}


double FileReadNumber(int handle)
从文件中读取数字,只能在CSV里使用 :: 输入参数
handle - FileOpen()返回的句柄示例:
int
handle;

int value;

handle=FileOpen("filename.csv", FILE_CSV, ';');

if(handle>0)

{

value=FileReadNumber(handle);

FileClose(handle);

}


string FileReadString(int handle, int length=0)
从文件中读取字符串 :: 输入参数
handle - FileOpen()返回的句柄
length - 读取字符串长度示例:
int
handle;

string str;

handle=FileOpen("filename.csv", FILE_CSV|FILE_READ);

if(handle>0)

{

str=FileReadString(handle);

FileClose(handle);

}


bool FileSeek( inthandle, int offset, int origin)
移动指针移动到某一点,如果成功返回true:: 输入参数
handle - FileOpen()返回的句柄
offset - 设置的原点
origin - SEEK_CUR从当前位置开始 SEEK_SET从文件头部开始SEEK_END 从文件尾部开始示例:
int
handle=FileOpen("filename.csv", FILE_CSV|FILE_READ, ';');

if(handle>0)

{

FileSeek(handle, 10, SEEK_SET);

FileReadInteger(handle);

FileClose(handle);

handle=0;

}


int FileSize( inthandle)
返回文件大小 :: 输入参数
handle - FileOpen()返回的句柄示例:
int
handle;

int size;

handle=FileOpen("my_table.dat", FILE_BIN|FILE_READ);

if(handle>0)

{

size=FileSize(handle);

Print("my_table.dat size is ", size, " bytes");

FileClose(handle);

}


int FileTell( inthandle)
返回文件读写指针当前的位置:: 输入参数
handle - FileOpen()返回的句柄示例:
int
handle;

int pos;

handle=FileOpen("my_table.dat", FILE_BIN|FILE_READ);

// reading some data

pos=FileTell(handle);

Print("current position is ", pos);


int FileWrite( inthandle, ... )
向文件写入数据 :: 输入参数
handle - FileOpen()返回的句柄
... - 写入的数据示例:
int
handle;

datetime orderOpen=OrderOpenTime();

handle=FileOpen("filename", FILE_CSV|FILE_WRITE, ';');

if(handle>0)

{

FileWrite(handle, Close, Open, High, Low, TimeToStr(orderOpen));

FileClose(handle);

}


int FileWriteArray( inthandle, object array[], int start, int count)
向文件写入数组 :: 输入参数
handle - FileOpen()返回的句柄
array[] - 要写入的数组
start - 写入的开始点
count - 写入的项目数示例:
int
handle;

double BarOpenValues;

// copy first ten bars to the array

for(int i=0;i<10; i++)

BarOpenValues=Open;

// writing array to the file

handle=FileOpen("mydata.dat", FILE_BIN|FILE_WRITE);

if(handle>0)

{

FileWriteArray(handle, BarOpenValues, 3, 7); // writing last 7 elements

FileClose(handle);

}


int FileWriteDouble( inthandle, double value, int size=DOUBLE_VALUE)
向文件写入浮点型数据 :: 输入参数
handle - FileOpen()返回的句柄
value - 要写入的值
size - 写入的格式,DOUBLE_VALUE(8 bytes, default)或FLOAT_VALUE(4 bytes). 示例:
int
handle;

double var1=0.345;

handle=FileOpen("mydata.dat", FILE_BIN|FILE_WRITE);

if(handle<1)

{

Print("can't open file error-",GetLastError());

return(0);

}

FileWriteDouble(h1, var1, DOUBLE_VALUE);

//...

FileClose(handle);


int FileWriteInteger(int handle, int value, int size=LONG_VALUE)
向文件写入整型数据 :: 输入参数
handle - FileOpen()返回的句柄
value - 要写入的值
size - 写入的格式,CHAR_VALUE(1 byte),SHORT_VALUE (2 bytes),LONG_VALUE (4 bytes, default). 示例:
int
handle;

int value=10;

handle=FileOpen("filename.dat", FILE_BIN|FILE_WRITE);

if(handle<1)

{

Print("can't open file error-",GetLastError());

return(0);

}

FileWriteInteger(handle, value, SHORT_VALUE);

//...

FileClose(handle);


int FileWriteString( inthandle, string value, int length)
向文件写入字符串数据 :: 输入参数
handle - FileOpen()返回的句柄
value - 要写入的值
length - 写入的字符长度示例:
int
handle;

string str="some string";

handle=FileOpen("filename.bin", FILE_BIN|FILE_WRITE);

if(handle<1)

{

Print("can't open file error-",GetLastError());

return(0);

}

FileWriteString(h1, str, 8);

FileClose(handle);


geek003 发表于 2019-7-31 08:02:52

学习学习,感谢分享
页: [1]
查看完整版本: 【MT4学习】MQL4语言基础语法12-文件处理函数 [File Functions]