Eradicatore has asked for the wisdom of the Perl Monks concerning the following question:

I was looking at this old link which tells me how to open the default browser in windows to a given URL, but I can't seem to find answers on how to open a regular old html file on my local drive like this. Any ideas out there? Thanks!

Justin Eltoft

"If at all god's gaze upon us falls, its with a mischievous grin, look at him" -- Dave Matthews

  • Comment on Opening html *file* with win32 shell execute

Replies are listed 'Best First'.
Re: Opening html *file* with win32 shell execute
by cymon (Novice) on Mar 13, 2002 at 04:14 UTC

    You mentioned a local html file on your hard drive, right? Try this:

    #!/usr/bin/perl -w use strict; my $filename = "/xyzzy.html"; #whatever system("start file://$filename")

    A few things to remember:

    1. Start was added sometime between Windows 95 and Windows 98. I believe it was added in 95 OSR/2, but may not be remembering that correctly. (That detail may or may not help you troubleshoot an old system someday.)
    2. When loading files on the local drive, use the file:// prefix, not the http:// prefix.
    3. Perl prefers to see forward slashes.

    Update: thanks, jc.

    P.S for **NODE DELETED**: Please get a grip or go away. Some of us aren't as 7337 as you and simply cannot cope with your profundity. Update 2: Looks like that node got reaped, so strike the friendly criticism for the Anonymonk.

Re: Opening html *file* with win32 shell execute
by justinNEE (Monk) on Mar 13, 2002 at 04:03 UTC
    start e:\nee.html
    that seems to work for me.