in reply to Trying to use [cpan://Win32::Env::Path] to change Windows Path Variable?
For the moment, the specifics of this class are remaining undocumentated.Because this is the code for the add method
Please read the code for more information, API is subject to change.
The save method looks like it probably works. You can get the path add, add it on yourself, and then save() the result.sub add { my $self = shift; my $path = shift; unless ( defined _STRING($path) ) { croak("Did not provide a path to ->add"); } die "CODE INCOMPLETE"; }
|
|---|