如何使用函数打开.txt
文件?execl()
c中是否还有其他功能可以gedit
在Ubuntu中打开文件。
问候
c中是否有任何其他功能可以在gedit中打开文件
最简单的是
system("gedit file.txt");
作为旁注,您可能需要查看xdg-open
.
你也可以试试这个
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