RE: Determining Default 'My Documents' folder path

2002-06-03 Thread Tillman, James
> I'm suprised that no-one has mentioned this yet but In > windows 2000 group policies (there are also other ways > to do this) you can use 'folder redirection' to > redirect special folder such as 'my documents' to > another location. ou don't have to use a server based > profile (ie: roaming) t

Re: Determining Default 'My Documents' folder path

2002-06-01 Thread Paul Jansen
chance of it bustificating. (word of the day). > > MK > > - Original Message - > From: "Paul Jansen" <[EMAIL PROTECTED]> > To: "Perl-Win32-Users (E-mail)" > <[EMAIL PROTECTED]> > Sent: Saturday, June 01, 2002 11:19 AM > Subject: RE:

Re: Determining Default 'My Documents' folder path

2002-06-01 Thread Mike Kalinovich
but the less playing around with it, the less chance of it bustificating. (word of the day). MK - Original Message - From: "Paul Jansen" <[EMAIL PROTECTED]> To: "Perl-Win32-Users (E-mail)" <[EMAIL PROTECTED]> Sent: Saturday, June 01, 2002 11:19 AM Subject

RE: Determining Default 'My Documents' folder path

2002-06-01 Thread Paul Jansen
t;; >} > > HTH > > Conor > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: 30 May 2002 17:43 > To: Adam Frielink > Cc: Perl-Win32-Users (E-mail) > Subject: Re: Determining Default 'My Docume

RE: Determining Default 'My Documents' folder path

2002-05-30 Thread Tillman, James
From: Adam Frielink [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 30, 2002 1:23 PM > To: Perl-Win32-Users (E-mail) > Subject: RE: Determining Default 'My Documents' folder path > > > > > > > > A little more research turned up the > SHGetSpecialFolde

RE: Determining Default 'My Documents' folder path

2002-05-30 Thread Adam Frielink
> > > A little more research turned up the SHGetSpecialFolderLocation API call > from the Shell32 library. You can verify this on the MSDN web > site in their > reference area. I would highly recommend getting this folder location > through the API. Microsoft has many ways of punishing those wh

RE: Determining Default 'My Documents' folder path

2002-05-30 Thread Tillman, James
the "Suggested way of doing things." jpt > -Original Message- > From: Tillman, James > Sent: Thursday, May 30, 2002 11:52 AM > To: 'Thomas R Wyant_III'; [EMAIL PROTECTED] > Cc: Perl-Win32-Users (E-mail) > Subject: RE: Determining Default 'My Docu

Re: Determining Default 'My Documents' folder path

2002-05-30 Thread Travis Sidelinger
C:\home\tobey>echo %userprofile%\My Documents C:\home\tobey\My Documents C:\home\tobey>perl print "$ENV{USERPROFILE}\\My Documents"; __END__ C:\home\tobey\My Documents C:\home\tobey> --- [EMAIL PROTECTED] wrote: > > On 30/05/2002 15:24:40 perl-win32-users-admin wrote: > > >I have been look

Re: Determining Default 'My Documents' folder path

2002-05-30 Thread csaba . raduly
On 30/05/2002 15:24:40 perl-win32-users-admin wrote: >I have been looking for a way to determine the path of the 'My Documents' >folder for a PC. I assume this is a registry setting. I did a search for >this through MY registry and the only potential references I can find refer >to a shell32.d

RE: Determining Default 'My Documents' folder path

2002-05-30 Thread Tillman, James
2002 10:41 AM > To: [EMAIL PROTECTED] > Cc: Perl-Win32-Users (E-mail) > Subject: Re: Determining Default 'My Documents' folder path > > > > Adam, > > Under Windows 2000 (and possibly other Win* operating systems), see > $ENV{USERPROFILE}. If you need a c

Re: Determining Default 'My Documents' folder path

2002-05-30 Thread Thomas R Wyant_III
Beware of the space if you intend to pass this to the glob function under Windows. Tom Wyant "Adam Frielink" <[EMAIL PROTECTED]>@listserv.ActiveState.com on 05/30/2002 10:24:40 AM Sent by:[EMAIL PROTECTED] To:"Perl-Win32-Users \(E-mail\)" <[EMAIL PROTEC

Determining Default 'My Documents' folder path

2002-05-30 Thread Adam Frielink
I have been looking for a way to determine the path of the 'My Documents' folder for a PC. I assume this is a registry setting. I did a search for this through MY registry and the only potential references I can find refer to a shell32.dll,9227. I don't have a clue as to what that means. Is th