如何获取 IronRuby 中的当前工作目录?
我想知道如何读取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想我在 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 :)
如果您愿意,还可以使用 CLR 方式执行操作:
You can also use the CLR way of doing things if you feel like it:
来自 Class:Dir:
From Class:Dir: