Ms Visual 应用程序的 .exe 文件位于何处?

发布于 2024-11-19 07:59:07 字数 213 浏览 3 评论 0原文

Ms Visual 应用程序的 .exe 文件位于何处?我刚刚创建了它,我想知道,以便我可以使用参数从 AIR 执行它。 AIR 上的代码示例:

var f:File = new File ("C:\path\application.exe -" + param1 + " -" + param2)
f.openWithDefaultApplication()

Where do the .exe file of a Ms Visual application goes to? I've just created it and I would like to know so that I can execute it from AIR with parameters.
ex of code on AIR:

var f:File = new File ("C:\path\application.exe -" + param1 + " -" + param2)
f.openWithDefaultApplication()

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

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

发布评论

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

评论(5

剩一世无双 2024-11-26 07:59:07

它会构建在您的 bin 文件夹中。

如果右键单击您的项目并选择“在 Windows 资源管理器中打开文件夹”,您将在其中找到 bin 文件夹和所有项目文件。

Windows 的默认设置是。

C:\users\“用户帐户”\我的文档\Microsoft Visual studio 2010\Projects\

It gets build in your bin folder.

If you right click on your project and select "Open folder in Windows Explorer", you will find the bin folder and all your project files in there.

Default for windows is.

C:\users\"User account"\My Documents\Microsoft Visual studio 2010\Projects\

长安忆 2024-11-26 07:59:07

你告诉它去哪里,它就去哪里。

它通常来自bin\Debug

It goes wherever you tell it to.

It usually comes from bin\Debug.

温柔戏命师 2024-11-26 07:59:07

它被放入项目的 Bin 文件夹中。

在 Bin 内,可能有也可能没有用于调试和发布版本的单独文件夹

It gets put into the Bin folder of the project.

within the Bin, there may or may not be seperate folders for Debug and Release builds

不…忘初心 2024-11-26 07:59:07

通常它会进入 bin/debug 或 bin/release 。您可以在项目属性中对其进行配置。

It goes to bin/debug or bin/release usually. You can configure it in Project properties.

故事↓在人 2024-11-26 07:59:07

调试时

var f:File = new File ("C:\users\"UserAccount"\My Documents\Microsoft Visual Studio 2010\Projects\"Project Name"\"Name"\bin\debug\"NameofApp".exe -"" + param1 + " -" + param2) f.openWithDefaultApplication()

如果您构建了它并正在寻找它,它将位于您的 bin/release 中:

就像这样。

var f:File = new File ("C:\users\"UserAccount"\My Documents\Microsoft Visual Studio 2010\Projects\"Project Name"\"Name"\bin\release\"NameofApp".exe -"" + param1 + " -" + param2) f.openWithDefaultApplication()

When debugging

var f:File = new File ("C:\users\"UserAccount"\My Documents\Microsoft Visual Studio 2010\Projects\"Project Name"\"Name"\bin\debug\"NameofApp".exe -"" + param1 + " -" + param2) f.openWithDefaultApplication()

If you built it and are looking for it it will be in your bin/release:

Like so.

var f:File = new File ("C:\users\"UserAccount"\My Documents\Microsoft Visual Studio 2010\Projects\"Project Name"\"Name"\bin\release\"NameofApp".exe -"" + param1 + " -" + param2) f.openWithDefaultApplication()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文