gpt4 book ai didi

c - 指定 C :\Program Files (x86)\gnuplot\bin in C programming using Geany 的文件路径

转载 作者:行者123 更新时间:2023-11-30 16:47:31 26 4
gpt4 key购买 nike

我正在尝试使用 popen 在 64 位 Windows 中使用已安装的 gnuplot.exe

在我的 C 程序中,我使用的示例如下

    FILE *gnuplot = popen("C:\\Program Files (x86)\\gnuplot\\bin\\gnuplot.exe", "w");

但是,Windows 命令行无法识别该文件路径我在 Windows 上使用 Geany,它给出了以下输出。

[enter image description here ]

如何使 C 程序获得正确的文件路径?

最佳答案

popen 需要一个 shell 命令,所以你想传递

"C:\Program Files (x86)\gnuplot\bin\gnuplot.exe"

这是使用实现的

popen("\"C:\\Program Files (x86)\\gnuplot\\bin\\gnuplot.exe\"", "w")

关于c - 指定 C :\Program Files (x86)\gnuplot\bin in C programming using Geany 的文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43328498/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com