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.
私はファイル拡張子を持っています、私はこの方法でそれを手に入れました:
fileName, fileExtension = os.path.splitext(abspath)
ここで、ファイル拡張子を引用文字を含む「*.fileExtension」のようなパターンにする必要があります。fnmatch次のように使用する必要があります。
fnmatch
if fnmatch.fnmatch(name, pattern)
何か案が?
文字列連結を使用します。
pattern = '*' + fileExtension
または文字列フォーマットを使用します:
pattern = '*{}'.format(fileExtension)
また
pattern = '*%s' % fileExtension