Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试导入一个 txt 文件,读取第一行并将其打印到屏幕上以进行测试。但它不起作用,并说目录中没有文件,但我的 .jl 文件和 .txt 文件在同一个文件夹中,我检查了 10 次,它们的拼写相同。这就是我尝试过的。
f =open("alphabet.txt"); a=readline(f) println(a) close(f)
抱歉这个问题的基本性质,但我已经检查了所有 Julia 文档,但找不到答案
您似乎不在您认为自己所在的目录中。
您可以使用
pwd()
查看 Julia 在哪个目录中工作,以及
readdir()
获取该目录中的文件列表。