如何获取 IronRuby 中的当前工作目录?

发布于 2024-07-30 19:30:02 字数 117 浏览 5 评论 0原文

我想知道如何读取 IronRuby 正在“解析”的文件的当前工作目录。 看起来“执行目录”与 ir.exe 文件相同。

我需要它来创建 XNA 解决方案中内容的相对路径,而不需要对路径进行硬编码。

I'm wondering how I can read the current working directory of a file being "parsed" by IronRuby. It appears the "execution directory" is the same as the ir.exe file.

I need this to create a relative path to content in a XNA solution without hardcoding the path.

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

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

发布评论

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

评论(3

檐上三寸雪 2024-08-06 19:30:03

我想我在 Dir.pwd 中找到了解决方案

愚蠢的我忘记了 pwd 不是密码的缩写,而是打印工作目录的缩写......

尴尬:)

I think I found the solution in Dir.pwd

Silly me forgot that pwd is not an acronym for password but for print working directory...

Embarassing :)

海夕 2024-08-06 19:30:03

如果您愿意,还可以使用 CLR 方式执行操作:

include System
Environment.current_directory => clr_string

You can also use the CLR way of doing things if you feel like it:

include System
Environment.current_directory => clr_string
时光瘦了 2024-08-06 19:30:03

来自 Class:Dir

Dir.getwd => string
Dir.pwd => string

Returns the path to the current working directory of this process as a string.

Dir.chdir("/tmp")   #=> 0
Dir.getwd           #=> "/tmp"

From Class:Dir:

Dir.getwd => string
Dir.pwd => string

Returns the path to the current working directory of this process as a string.

Dir.chdir("/tmp")   #=> 0
Dir.getwd           #=> "/tmp"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文