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.
我正在尝试使用'Get a file with ftp'step 下载整个文件夹。这一步只下载文件吗?我还尝试了正则表达式来匹配文件夹。我对文件夹使用了以下正则表达式: ^[a-zA-Z0-9]$
'Get a file with ftp'
^[a-zA-Z0-9]$
此外,它只下载.txt files. 我对文件使用了以下正则表达式: *\.(txt|jpg|gif|pdf|doc|docx|xls|xlsx)
.txt files
*\.(txt|jpg|gif|pdf|doc|docx|xls|xlsx)
注意:我想下载指定目录中的整个文件夹,但我也面临仅下载文件的问题。