General utilities without GUI dependencies.
LastPath
Bases: object
object
Stores a file system path for use in file open dialogs.
How to test this platform independent? >>> from utils import LastPath, getHomeDir >>> LastPath.path == getHomeDir() True >>> LastPath.path = ‘.’ >>> LastPath.path == ‘.’ True
get
Warning
method ‘utils.lastpath.LastPath.get’ undocumented
set
Accepts a directory path or a file path. Determines the directory itself in the latter case.
getHomeDir
function ‘utils.lastpath.getHomeDir’ undocumented