[python-win32] NTFS: editing properties of a file

2005-08-25 Thread Thomas Weiner
Hi all, is it possible to read and edit the extended properties of a file on NTFS drives? For example: with the explorer you get properties like Title, Author, Subject, Category etc by right clicking. I want to use and edit these fields programmaticly. In pythonwin I've found methods for Offic

[python-win32] Installing a Python script as service

2005-08-25 Thread Wolfgang Schneider
Hi We have the following problem when we try to install a Python script as Win32 service: The Python script is located in a path that contains the substring "_demonstrator". When installing the Python service for this script, we get the error message, the the file "PythonService_d.exe" isn't fou

[python-win32] Problem with COM/ADO using SQL Stored Procedure with OUTPUT parameter

2005-08-25 Thread Simon Bayling
Hello, I am unable to get the value of an OUTPUT parameter from a SQL Server stored procedure - but only when accessing it with ADO using Python and COM. I also can't find any good Google answers on the topic (mostly, a post by one Steve Holden who had the same problem, and that was left u

Re: [python-win32] NTFS: editing properties of a file

2005-08-25 Thread Roger Upole
StgOpenStorageEx allows you to access the NTFS extended document properties. Take a look at \win32com\test\testStorage.py for examples of how it's used from Python. hth Roger Thomas Weiner wrote: > Hi all, > > is it possible to read and edit the extended properties of a file on >