我有一个python脚本,它将输入参数作为目录和文件的路径并下载文件。我的代码如下所示
def fetch_file(file_url, downloadPath):
link = urllib2.urlopen(file_url)
Opening the destination path and writing the contents
问题出在源头我有很多带有共同前缀的文件,如下所示: file_1.txt
file_2.txt
file_3.txt ...... test.py等
我想将参数作为单个字符串传递给文件* .txt。但是urllib2并没有使用它。我可以使用基于模式的搜索并下载以文件开头并以txt结尾的文件吗?有什么建议吗?