在excel()中打开.txt文件

时间:2012-11-18 11:09:11

标签: c file ubuntu exec

如何使用.txt功能打开execl()文件?在c中是否还有其他函数可以在Ubuntu中的gedit中打开文件。

此致

2 个答案:

答案 0 :(得分:2)

  

c中是否还有其他功能可以在gedit中打开文件

最容易的是

system("gedit file.txt");

作为旁注,您可能需要查看xdg-open

答案 1 :(得分:1)

你也可以尝试这个

execlp("/usr/bin/gedit","gedit","text.txt",NULL);

execl()execlp()

的一般语法
int execl(const char *path, const char *arg, ...);
int execlp(const char *file, const char *arg, ...);

提供text.txt

的完整路径