Ejemplo n.º 1
0
 def reveal_path(self):
     path = str(self.text())
     
     if os.path.exists(path):
     
         utilities.show_file_in_folder(path)
Ejemplo n.º 2
0
    def reveal_path(self):
        path = str(self.text())

        if os.path.exists(path):

            utilities.show_file_in_folder(path)
Ejemplo n.º 3
0
def show_content_in_file_browser(project_item, file_items):
    print 'showing in finder'
    print project_item, file_items

    path = file_items[0].content.nice_path()
    utilities.show_file_in_folder(path)
Ejemplo n.º 4
0
def show_content_in_file_browser(project_item,file_items):
    print 'showing in finder'
    print project_item,file_items
    
    path = file_items[0].content.nice_path()
    utilities.show_file_in_folder(path)