我想获取文件“exportFile”的路径。

exportFile = tkFileDialog.asksaveasfile(mode='a')

如果我写“打印导出文件”,我会得到:
<open file u'C:/Users/Desktop/Test/aaaa.txt', mode 'a' at 0x02CB6078>

但我只需要路径 - “C:/Users/Desktop/Test/aaaa.txt”。
有什么解决办法吗?谢谢你。

最佳答案

试试这个:

exportFile = tkFileDialog.asksaveasfile(mode='a')
exportFile.name

它会返回:
'C:/Users/Desktop/Test/aaaa.txt'

关于Python tkFileDialog.asksaveasfile - 获取文件路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21877216/

10-12 22:26