4
我如何找到文件列表的擴展名。我目前使用的是 os.path.splitext這是不工作的。請在文件列表的情況下建議任何其他方法。如何查找文件列表中的文件擴展名?
我的代碼放在這裏:
files = request.FILES.getlist('media')
for f in files:
p = os.path.splitext(f)[1]
print p
它顯示了錯誤提前
它工作謝謝 –