Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: How to get location of Desktop folder on Win32

by jdporter (Paladin)
on Apr 08, 2004 at 14:51 UTC ( [id://343616]=note: print w/replies, xml ) Need Help??


in reply to How to get location of Desktop folder on Win32

It's incredibly easy using Win32::OLE. You can use the application object named WScript.Shell.
use Win32::OLE; my $wsh = new Win32::OLE 'WScript.Shell'; my $desktop_path = $wsh->SpecialFolders('Desktop');
You can inquire about lots of other special folders using this interface:
  • Favorites
  • Fonts
  • MyDocuments
  • NetHood
  • PrintHood
  • Programs
  • Recent
  • SendTo
  • StartMenu
  • Startup
  • Templates
I don't know what versions of Windows have the WScript.Shell interface. The only Perl dependency is the Win32::OLE module.

jdporter
The 6th Rule of Perl Club is -- There is no Rule #6.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://343616]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-16 14:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found