用户输入文件路径

对不起,这样一个初学者的问题,但我想创建一个脚本,用户可以用来从我的sftp服务器获取文件名。目录基本上是/文件/年/月/日,因此一个例子是文件/ 2017/1/23。用户输入文件路径

我想用用户输入来打印出他们想要的特定目录的文件名。我认为我的问题与将“/”合并到输入路径中有关。但这是我的第一个项目,我可能完全不在。感谢您的任何输入。

import pysftp as sftp 

year = int(input("Enter year of event: "))

month = int(input("Enter month of event: "))

day = int(input ("Enter day of event: "))

srv = sftp.Connection(host="hostname", username="user",

password="pass")

srv.chdir("recordings/'year'/'month'/'day'")

for filename in sorted(srv.listdir()):

if filename.startswith('web') and filename.endswith('.mp4'):

print (filename)

srv.close()

回答:

变化srv.chdir("recordings/'year'/'month'/'day'")线以下

srv.chdir("recordings/%s/%s/%s"%(year,month,day)) 

希望这有助于!

以上是 用户输入文件路径 的全部内容, 来源链接: utcz.com/qa/267212.html

回到顶部