ファイル名とファイルパスを表示する
>>> import os >>> url = 'http://images.cnitblog.com/i/311516/201403/020013141657112.png' >>> filename = os.path.basename(url) >>> filepath = os.path.dirname(url) >>> filename '020013141657112.png' >>> filepath 'http://images.cnitblog.com/i/311516/201403' >>>
import os print(os.path.realpath(__file__)) # 当前文件的路径 print(os.path.dirname(os.path.realpath(__file__))) # 从当前文件路径中获取目录 print(os.path.basename(os.path.realpath(__file__))) # 从当前文件路径中获取文件名rreerree
以上がPython でファイル名とファイル パスを表示する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。