Re: win32 shell extension (virtual drive)

2005-03-15 Thread Tim Roberts
Tiziano Bettio <[EMAIL PROTECTED]> wrote: > >I'm looking for a simple solution of a win32 shell extension (virtual >drive). > >It should make available a new drive with letter, which will be >read-only. Instead of a network drive or similar it then should query a >server application for directory/f

Re: win32 shell extension (virtual drive)

2005-03-15 Thread Roger Upole
There's an example shell extension in the Pywin32 demos that creates a pseudo-folder whose contents are determined by python code. Take a look at \win32comext\shell\demos\servers\shell_view.py. However, I don't think it qualifies as 'simple' ;) Roger "Tiziano Bettio" <[EMAIL PROTECTED]>

Re: win32 shell extension (virtual drive)

2005-03-15 Thread Fuzzyman
Not much help... but the place to be looking is in the win32 api. You'll then need to see if the functionality is already exposed in the win32 extensions by Mark Hammond - if not you can use ctypes to access it. The ctypes mailing list might be a useful place to ask questions - but it's not somethi