ShellExecute 调用记事本程序打开txt文件

可以直接加上如下代码:

ShellExecute(NULL,"open","C://1.txt",NULL,NULL,SW_SHOW);    //打开 文件1.txt

 

另外:下边代码的作用 是浏览 C:/joke 目录下的内容

ShellExecute(NULL,"explore","C://joke",NULL,NULL,SW_SHOW);    //浏览 C:/joke 目录下的内容

或者:WinExec("notepad.exe    C://1.txt",    SW_SHOW);

 

Shell Execute 的具体用法:http://baike.baidu.com/view/1044533.htm

你可能感兴趣的:(ShellExecute 调用记事本程序打开txt文件)