From 11c55cae4b2ffc36ee6529cc6c5e8ae82dc7b77c Mon Sep 17 00:00:00 2001 From: rasky Date: Tue, 14 Sep 2010 10:18:49 +0000 Subject: [PATCH 1/1] Remove win32com dependency by using ctypes to invoke win32 API. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4238 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BFolderPage.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index 6af6a651..9623394d 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -136,10 +136,15 @@ class BFolderPage(BWizardPage): if stored_folder != "": self._destination_folder = stored_folder elif os.name == "nt": - from win32com.shell import shell, shellcon - self._destination_folder = shell.SHGetFolderPath(0, shellcon.CSIDL_PERSONAL, 0, 0) - del shell - del shellcon + def _winGetSpecialFolder(csidl): + from ctypes import windll, create_unicode_buffer + MAX_PATH = 4096 + buf = create_unicode_buffer(MAX_PATH) + if not windll.shell32.SHGetSpecialFolderPathW(0, buf, csidl, False): + raise WindowsError("cannot get special folder location") + return buf.value + CSIDL_PERSONAL = 5 + self._destination_folder = _winGetSpecialFolder(CSIDL_PERSONAL) else: self._destination_folder = os.path.expanduser("~") self.pageContent.directoryEdit.setText(self._destination_folder) -- 2.25.1