性能测试培训总结-从远程机器打开TXT文件

int *fp;

fp = (int*) fopen("\\\\machine_name\\shared_name\\dir_name\\filename","attribute");//该函数具体看查看帮助手册

long stream;

char file_path[100];


Action()

{

sprintf(file_path,"%s\\yourfile.txt",lr_get_attrib_string("usr"));

if((stream = fopen(file_path,"r"))!=NULL)

{

lr_output_message(file_path);

fclose( stream );

}

else

lr_output_message("the file can't be opened");

return0;

}











本文转自 小强测试帮 51CTO博客,原文链接:http://blog.51cto.com/xqtesting/1205615,如需转载请自行联系原作者
上一篇:【Spark Summit East 2017】R与Spark:如何使用RStudio的 Sparklyr和H2O的 Rsparkling分析数据


下一篇:《Spark大数据分析:核心概念、技术及实践》一3.8 Spark作业