当在文件名的完全匹配上使用nlst时,我看到一些相当奇怪的结果(如下)。任何人都可以帮忙解释一下吗?
外卡 - 好
ftp.nlst('*ItemPrice.xml')
# => ["/Output/ItemPrice.xml"]
外卡 - 好
ftp.nlst('*.xml')
# => ["/Output/ItemAvailability.xml", "/Output/ItemPrice.xml", "/Output/ItemUpsert.xml"]
完全匹配 - 错误
ftp.nlst('ItemPrice.xml')
# => ["/Output/ItemPrice.xml/Output/ItemPrice.xml"]