当我想更改工作目录时 Fortran 编译错误
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
标准 Fortran 中不存在
CHDIR
。编译器可以作为扩展提供,或者作为子例程:(
注意
调用
),或者作为函数。请参阅编译器手册以获取正确的形式。例如,GCC 手册。您可能还需要使用一些模块。
你不能将它用作没有任何其他内容的陈述。
CHDIR
does not exist in standard Fortran.Compilers may provided as an extension either as a subroutine:
(note the
call
), or as a functionConsult 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.
我用下面的代码解决了我的问题
I solved my issue with code below