inquire(file = -6ren">
gpt4 book ai didi

julia - 检查 Julia 中的文件是否存在

转载 作者:行者123 更新时间:2023-12-02 00:30:56 26 4
gpt4 key购买 nike

Julia 中是否有一种简单的方法来检查当前工作目录中的文件是否存在(类似于 Python 中的 test = os.path.isfile("foo.txt") >inquire(file = "foo.txt", Exist = test) Fortran 语言)?

最佳答案

Julia 有 isfile() 函数来测试常规文件:

julia> isfile("foo.txt")
false

shell> touch foo.txt

julia> isfile("foo.txt")
true

作为documentation :

Returns true if path (the parameter) is a regular file, false otherwise.

关于julia - 检查 Julia 中的文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35975810/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com