在 ocaml 中运行可执行(Windows)文件

发布于 2024-11-13 22:35:42 字数 63 浏览 3 评论 0原文

快问。如何在ocaml中运行可执行文件?我相信这是可能的,但我不知道如何实现。

请提供示例代码。

Quick question. How to run an executable file in ocaml? I believe this is possible, but I don't know how.

Please provide an example code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏花。依旧 2024-11-20 22:35:42

如果您只想运行程序而不与其通信,请使用 Sys.command

let exit_code = Sys.command "c:\\path\\to\\executable.exe /argument" in
(* if exit_code=0, the command succeeded. Otherwise it failed. *)

对于更复杂的情况,您需要使用 Unix< 中的 函数/代码>模块。尽管有这个名字,大多数都可以在 Windows 下运行。例如,如果您需要从命令获取输出:

let ch = Unix.open_process_in "c:\\path\\to\\executable.exe /argument" in
try
  while true do
    let line = input_line ch in …
  done
with End_of_file ->
  let status = close_process_in ch in …

If you just want to run a program and not communicate with it, use Sys.command.

let exit_code = Sys.command "c:\\path\\to\\executable.exe /argument" in
(* if exit_code=0, the command succeeded. Otherwise it failed. *)

For more complex cases, you need to use the functions in the Unix module. Despite the name, most of them work under Windows. For example, if you need to get output from a command:

let ch = Unix.open_process_in "c:\\path\\to\\executable.exe /argument" in
try
  while true do
    let line = input_line ch in …
  done
with End_of_file ->
  let status = close_process_in ch in …
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文