Re: NTFS reparse points

2005-11-04 Thread Roger Upole
You should be able to use win32file.DeviceIoControl with winioctlcon.FSCTL_SET_REPARSE_POINT to do this. (winioctlcon was added in build 205) The hard part is going to be constructing the REPARSE_GUID_DATA_BUFFER struct to pass in as the buffer. hth Roger Stanislaw Findeisen [EMAIL

NTFS reparse points

2005-11-03 Thread Stanislaw Findeisen
I want to create a reparse point on NTFS (any). Here (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/reparse_points.asp) I read: reparse points are used to implement NTFS file system links. Here

Re: NTFS reparse points

2005-11-03 Thread Duncan Booth
Stanislaw Findeisen wrote: (2) Does anybody have any idea (sample code?) on how to create a reparse point (the simpler, the better) using Python? The only sample code I've seen for creating reparse points is in c or c++ and its quite a messy operation. See

Re: NTFS reparse points

2005-11-03 Thread Roel Schroeven
Stanislaw Findeisen wrote: I want to create a reparse point on NTFS (any). Here (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/reparse_points.asp) I read: reparse points are used to implement NTFS file system links. Here

Re: NTFS reparse points

2005-11-03 Thread Tony Nelson
In article [EMAIL PROTECTED], Stanislaw Findeisen [EMAIL PROTECTED] wrote: ... However I can't see FILE_ATTRIBUTE_REPARSE_POINT turned on in any file / directory shortcuts I create. In fact the only attribute set in shortcuts created using Windows Explorer is FILE_ATTRIBUTE_ARCHIVE. (I am