简体   繁体   English

获取所选文件的完整路径

[英]Get full path of selected file

i have a tree tiew from a folder and i want to open the file when i click one file.我有一个文件夹中的树状结构,我想在单击一个文件时打开该文件。

Everything ok, but when i click the file it doest send me the correct path一切正常,但是当我单击该文件时,它不会向我发送正确的路径

import os
import platform
import subprocess
import tkinter as tk
import tkinter.ttk as ttk



class App(tk.Frame):
    def openfolderfile(self,filename2open):
        if platform.system() == "Windows":
            os.startfile(filename2open)
        elif platform.system() == "Darwin":
            subprocess.Popen(["open", filename2open])
        else:
            subprocess.Popen(["xdg-open", filename2open])


    def select(self):
        for i in self.tree.selection():
            print("".join([str(self.tree.item(i)['text'])]))
            print(os.path.abspath("".join([str(self.tree.item(i)['text'])])))
           # self.openfolderfile()

    def __init__(self, master, path):
        tk.Frame.__init__(self, master)
        self.tree = ttk.Treeview(self)
        ysb = ttk.Scrollbar(self, orient='vertical', command=self.tree.yview)
        xsb = ttk.Scrollbar(self, orient='horizontal', command=self.tree.xview)
        self.tree.configure(yscroll=ysb.set, xscroll=xsb.set)
        self.tree.heading('#0', text=path, anchor='w')

        abspath = os.path.abspath(path)
        root_node = self.tree.insert('', 'end', text=abspath, open=True)
        self.process_directory(root_node, abspath)

        self.tree.grid(row=0, column=0,ipady=200,ipadx=200)
        ysb.grid(row=0, column=1, sticky='ns')
        xsb.grid(row=1, column=0, sticky='ew')
        self.grid()
        self.tree.bind("<Double-Button>", lambda e: self.select())




    def process_directory(self, parent, path):
        for p in os.listdir(path):
            abspath = os.path.join(path, p)
            isdir = os.path.isdir(abspath)
            oid = self.tree.insert(parent, 'end', text=p, open=False)
            if isdir:
                self.process_directory(oid, abspath)






root = tk.Tk()
w, h = root.winfo_screenwidth(), root.winfo_screenheight()
root.geometry("%dx%d+0+0" % (w, h))
root.title("Success ")


app = App(root, path="Reports/")
app.mainloop()

This is what it print:这是它打印的内容:

/Users/myuser/PycharmProjects/OCP/Notas.txt /Users/myuser/PycharmProjects/OCP/Notas.txt

The real path is:真正的路径是:

/Users/myuser/PycharmProjects/OCP/Reports/rep1/Notas.txt /Users/myuser/PycharmProjects/OCP/Reports/rep1/Notas.txt

why is this appening?为什么会这样?

Try it like this for your select function:像这样为您的select功能尝试它:

def select(self):
    for i in self.tree.selection():
        print("".join([str(self.tree.item(i)['text'])]))

        full_path = ''
        current_iid = i

        while True:
            # get next parent directory
            parent_iid = self.tree.parent(current_iid)
            attach_path = self.tree.item(parent_iid)['text']

            # change the parent identifier to be the current now
            current_iid = parent_iid

            # break if the path is empty and thus no more parents are available
            if attach_path == '':
                break

            # add found path to the full path
            full_path = os.path.join(attach_path, full_path)

        print(os.path.join(full_path, ("".join([str(self.tree.item(i)['text'])]))))

The problem with your implementation was, that you used os.path.abspath , this gives you the current working directory but not the directory where the selected file is in.您实现的问题是,您使用了os.path.abspath ,这为您提供了当前工作目录,而不是所选文件所在的目录。

import os
file = 'myfile.txt'
file = 'directory/to/myfile.txt'
path = os.path.abspath(file)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM