如何使用.txt
功能打开execl()
文件?在c中是否还有其他函数可以在Ubuntu中的gedit
中打开文件。
此致
答案 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