関数.txt
を使用してファイルを開くにはどうすればよいですか? Ubuntuexecl()
でファイルを開くためのcの他の機能はありますか。gedit
よろしく
geditでファイルを開くためにcに他の関数はありますか
最も簡単なのは
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