No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

file_util.py 172B

12345678
  1. from urllib.parse import urlparse
  2. import os
  3. # 获取url后缀
  4. def get_path_suffix(path):
  5. path = urlparse(path).path
  6. return os.path.splitext(path)[-1].lstrip('.')