当我想更改工作目录时 Fortran 编译错误

发布于 2025-01-09 16:31:32 字数 351 浏览 1 评论 0原文

在 Fortran 子例程中,我想更改工作目录并使用

CHDIR("/new/work/directory")

,但出现编译错误

error #5082: Syntax error, found END-OF-STATEMENT when expecting one of: ( % [ . = =>
       [cc]       CHDIR("/new/work/directory")
       [cc] ------------------------^

我在代码的其他部分使用 CHDIR 并且没有问题。

有人可以帮助我。

In a Fortran subroutine I would like to change the work directory and I use

CHDIR("/new/work/directory")

but I have a compilation error

error #5082: Syntax error, found END-OF-STATEMENT when expecting one of: ( % [ . = =>
       [cc]       CHDIR("/new/work/directory")
       [cc] ------------------------^

I use CHDIR in other part of my code and I have not problems.

Someone can help me.

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

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

发布评论

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

评论(2

追我者格杀勿论 2025-01-16 16:31:32

标准 Fortran 中不存在 CHDIR

编译器可以作为扩展提供,或者作为子例程:(

call CHDIR(...)

注意调用),或者作为函数

IER = CHDIR(...)

。请参阅编译器手册以获取正确的形式。例如,GCC 手册。您可能还需要使用一些模块。

你不能将它用作没有任何其他内容的陈述。

CHDIR does not exist in standard Fortran.

Compilers may provided as an extension either as a subroutine:

call CHDIR(...)

(note the call), or as a function

IER = CHDIR(...)

Consult your compiler's manual for the right form. E.g., the GCC manual. You may also need to use some module.

You cannot use it as a statement without anything else.

寄居者 2025-01-16 16:31:32

我用下面的代码解决了我的问题

INTEGER I

I = CHDIR("/new/work/directory")

I solved my issue with code below

INTEGER I

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