SORU
12 ŞUBAT 2009, PERŞEMBE


Python ile dosya ayıklama uzantısı

Bir işlevi, bir dosya adı uzantısı ayıklamak için var mı?

CEVAP
12 ŞUBAT 2009, PERŞEMBE


Evet. Kullanım os.path.splitext:

>>> import os
>>> filename, file_extension = os.path.splitext('/path/to/somefile.ext')
>>> filename
'/path/to/somefile'
>>> file_extension
'.ext'

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • jbignacio

    jbignacio

    13 Mart 2006
  • parlophone

    parlophone

    28 ŞUBAT 2006
  • Roger Huffman

    Roger Huffma

    4 ŞUBAT 2007