Re: [WiX-users] Recursive folder deletion

2008-04-20 Thread Ryan O'Neill
Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: 20 April 2008 21:27 To: 'Ryan O'Neill'; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Recursive folder deletion That folder is the folder you get when you use Isolated Storage in .NET 2.0. I'd have to say that an app

Re: [WiX-users] Recursive folder deletion

2008-04-20 Thread Mike Dimmick
That folder is the folder you get when you use Isolated Storage in .NET 2.0. I'd have to say that an application installed to the local disk isn't really the target market for that - it's more for code running in restricted security, such as applications run from the network or IE plugins. --

Re: [WiX-users] Recursive folder deletion

2008-04-18 Thread Bob Arnson
Ryan O'Neill wrote: I've got a Custom Action working as a DLL from my console app and it deletes file on disk. I now want to push the file deletion into the RemoveFiles table. Given that I have a handle to the MSI file instance, how would I access/call the RemoveFile function based on the be

Re: [WiX-users] Recursive folder deletion

2008-04-17 Thread Ryan O'Neill
CCESS; } From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 17 April 2008 15:31 To: Ryan O'Neill Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Recursive folder deletion Ryan O'Neill wrote: OK, so I'm going to give it a shot, may take a while though. Any pointers / requ

Re: [WiX-users] Recursive folder deletion

2008-04-17 Thread Bob Arnson
Ryan O'Neill wrote: OK, so I'm going to give it a shot, may take a while though. Any pointers / requirements from people such as Bobs usage of RemoveFile (being naive I would have just deleted the files / dirs)? Notes; 1) It won't be 64 bit tested. 2) It will be based on the

Re: [WiX-users] Recursive folder deletion

2008-04-17 Thread Ryan O'Neill
CTED] Sent: 16 April 2008 16:29 To: Ryan O'Neill Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Recursive folder deletion Ryan O'Neill wrote: This means that I get a folder named MyApp_StrongName_657235673256732765 which changes each time I compile as the hash changes t

Re: [WiX-users] Recursive folder deletion

2008-04-17 Thread Ryan O'Neill
2008 00:47 To: Ryan O'Neill; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Recursive folder deletion Or you could write the "NukeFolder" CustomAction and contribute it to the community the way Bob would (will?) when he had time. From: [EMAIL PROTECTED] [mailto:

Re: [WiX-users] Recursive folder deletion

2008-04-16 Thread Rob Mensching
net Subject: Re: [WiX-users] Recursive folder deletion Looks like it is the dreaded vbscript for now then. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 16 April 2008 16:29 To: Ryan O'Neill Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Recursive folder deletion Ryan O'Neill

Re: [WiX-users] Recursive folder deletion

2008-04-16 Thread Ryan O'Neill
Looks like it is the dreaded vbscript for now then. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 16 April 2008 16:29 To: Ryan O'Neill Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Recursive folder deletion Ryan O'Neill wrote: This means that I get a fo

Re: [WiX-users] Recursive folder deletion

2008-04-16 Thread Bob Arnson
Ryan O'Neill wrote: This means that I get a folder named MyApp_StrongName_657235673256732765 which changes each time I compile as the hash changes too. I know the parent folder is mine so it is safe to delete all below that. Has anyone else come across deleting directory trees? I apprec