IronScheme 中加载源文件的当前目录是什么?

发布于 2024-10-16 08:09:33 字数 156 浏览 2 评论 0原文

IronScheme 中是否有类似的命令(例如 cd、pwd)对当前工作目录进行操作?我想获取 (load "source.ss") 使用的目录。

此外,由于IronScheme是一个标准Scheme,我认为在其他Scheme中工作的功能也可以在这里工作。

Is there any similar command such as cd, pwd which operate on current working directory in IronScheme? I want to get the directory which is used by (load "source.ss").

Besides, since IronScheme is a standard Scheme, I think the function works in other Scheme could also work here.

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

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

发布评论

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

评论(1

泅渡 2024-10-23 08:09:33

这不是标准的 Scheme 过程,但在 IronScheme 中您可以执行以下操作(之一):

> (import (ironscheme environment))
> (current-directory) ; same as the present working dir
"C:\\Program Files\\IronScheme"
> (application-directory) ; where the IronScheme exe lives
"C:\\Program Files\\IronScheme"
>

This is a not standard Scheme procedure, but in IronScheme you can do (one of) the following:

> (import (ironscheme environment))
> (current-directory) ; same as the present working dir
"C:\\Program Files\\IronScheme"
> (application-directory) ; where the IronScheme exe lives
"C:\\Program Files\\IronScheme"
>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文