我在用:
file = tkFileDialog.askopenfile(parent=root, mode='rb',
filetypes=[('Subrip Subtitle File','*.srt')], title='Choose a subtitle file')
获取用户指定的文件对象。
有什么方法可以从文件对象中获取该文件的绝对路径?
file = tkFileDialog.askopenfile(parent=root,mode='rb',filetypes=[('Subrip Subtitle File','*.srt')],title='Choose a subtitle file')
abs_path = os.path.abspath(file.name)
os.path.abspath
如果我正确理解你的问题,应该做你想做的事。