如何 运行 来自 neko haxe 的 powershell 脚本?

How to run a powershell script from neko haxe?

我需要 运行 来自 haxe 代码和 return 数据的 powershell 脚本。我将在我的代码中使用这些数据。

我该怎么做?

您可以 运行 来自 Neko 的 sys.io.Process

查看 api 文档
http://api.haxe.org/sys/io/Process.html

要查看如何使用它的示例,请查看此
http://code.haxe.org/category/macros/add-git-commit-hash-in-build.html

在你的情况下它看起来像这样

var process = new sys.io.Process('powershell', ['any parameters']);

注意:我不确定你是否真的需要 powershell,因为你可以用它执行命令行。

希望对您有所帮助!