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.
私は次のようなことをしたい:
sftp.listdir("path_to_files/*.csv")
同様に
sftp.get("path_to_files/*.csv")
を使用することは可能paramikoですか?
paramiko
ありがとう
ソナル
リスト内包表記でかなり簡単になるはずです
[ f for f in sftp.listdir("path_to_files") if f.endswith(".csv") ]