tkFileBrowser
tkFileBrowser copied to clipboard
File browser for Tkinter, alternative to tkinter.filedialog in linux with GTK bookmarks support.
The "Name", "Size", and "Modified" headings allow users to sort the displayed files in alphabetical, size, and last-modified date order, respectively. It seems that the default sort when the widget...
Hi, I'm unable to get this to work, is it a bug in tkFileBrowser? ```python from tkfilebrowser import askopendirname askopendirname(initialdir='/') ``` ```python --------------------------------------------------------------------------- TclError Traceback (most recent call last) /tmp/ipykernel_533702/3888443447.py...
Great!, the open dialog file browser I was looking for Just one thing: pressing the ESC key doesn't execute Cancel, as expected (tested on Linux Mint) Thank you very much!
if env variable LANG is unset, import tkfilebrowser raises exception. (in constants module line 98, if LANG[:2]=="fr") Tested on 2.3.2
recently I wrote a simple GUI Programm which has used tkFileBrowser . It works well and I appreciate it. But when i package this .py Script into .exe flie with...
https://github.com/j4321/tkFileBrowser/blob/master/tkfilebrowser/filebrowser.py#L382 path_bm = join(home, ".config", "gtk-3.0", "bookmarks") path_bm2 = join(home, ".gtk-bookmarks") # old location if exists(path_bm): with open(path_bm) as f: bms = f.read().splitlines() elif exists(path_bm2): with open(path_bm) as f: ***...
I am on Windows 10, Python 3.8.1. I used pip install tkfilebrowser. The module was installed without error, but failed when attempting to use it because pywin32 was not included...
If you try to change the file extension by using the drop down menu of the asksaveasfilename dialog the file extension only gets replaced but not appended if there is...
Is there some documentation for the 'shortcuts'? I get a lot of shortcuts to items that are mounted at `/snap/...` which creates a lot of clutter. It looks like the...