Example #1
0
 def OnOpenWareboxRequest(self, event):
     """
     Opens the FileRock folder using the system file browser
     """
     full_warebox_path = self.client.get_warebox_path()
     if full_warebox_path is None:
         return
     open_folder_in_system_shell(full_warebox_path)
Example #2
0
 def OnOpenWareboxRequest(self, event):
     """
     Opens the FileRock folder using the system file browser
     """
     full_warebox_path = self.client.get_warebox_path()
     if full_warebox_path is None:
         return
     open_folder_in_system_shell(full_warebox_path)
 def _open_warebox_folder(self, cfg):
     """Open the warebox in the system shell.
     """
     warebox_path = cfg.get('Application Paths', 'warebox_path')
     open_folder_in_system_shell(warebox_path)
Example #4
0
 def _open_warebox_folder(self, cfg):
     """Open the warebox in the system shell.
     """
     warebox_path = cfg.get('Application Paths', 'warebox_path')
     open_folder_in_system_shell(warebox_path)