命令提示符说“没有这样的文件或目录”,但该文件存在

问题描述 投票:0回答:1

我在命令提示符下运行文件有问题,一直说“没有这样的文件或目录”

我复制n粘贴了一个现有文件的路径,并将该文件与我被告知的文件交换不存在。尝试了语法的各种小变化。

在文本编辑器中:

from sys import argv
script, filename = argv
txt = open(filename)

print(f"heres the file you wanted:{filename}:")
print(txt.read())

print("type the filename again:")
file_again=input("> ")

txt_again=open(file_again)
print(txt_again.read())

在BASH:

python3.7 /users/philipedwards/Documents/ex15.py test.txt
python-3.x bash
1个回答
2
投票

我假设test.txtDocuments文件夹中。但是,基于此命令:

python3.7 /users/philipedwards/Documents/ex15.py test.txt

您当前的位置可能不是Documents目录。通过指定text.txt,你试图从当前目录打开text.txt,而不是/users/philipedwards/Documents/test.txt

因此,要么从Documents目录运行脚本:

cd /users/philipedwards/Documents
python3.7 ex15.py test.txt

或者,如果您不想更改活动目录,请指定文本文件的完整路径:

python3.7 /users/philipedwards/Documents/ex15.py /users/philipedwards/Documents/test.txt
© www.soinside.com 2019 - 2024. All rights reserved.