vote up 3 vote down star

Is it possible to assign the result of a switch statement to a variable.

For example, instead of:

switch ($Extension) 
    { 
        doc {$Location = "C:\Users\username\Documents\"; break} 
        exe {$Location = "C:\Users\username\Downloads\"; break}
        default {$Location = "C:\Users\username\Desktop\"}
    }

Is it possible to do something similar to:

$Location = 
{
    switch ($Extension) 
    { 
        doc {"C:\Users\username\Documents\"; break} 
        exe {"C:\Users\username\Downloads\"; break}
        default {"C:\Users\username\Desktop\"}
    }
}

Trying the above results in $location containing the entire code block as a String.

flag

2 Answers

vote up 5 vote down check

For V1, I would wrap the switch statement in a function.

function Get-DocumentLocation($Extension)
{
    switch ($Extension) 
    { 
        doc {"C:\Users\username\Documents\"; break} 
        exe {"C:\Users\username\Downloads\"; break}
        default {"C:\Users\username\Desktop\"}
    }
}

$Location = Get-DocumentLocation $extension
link|flag
Also, the original code gets a string of the code because you create a ScriptBlock ({switch()...}), but you don't invoke it: &{switch()...} – JasonMArcher Apr 12 at 16:17
vote up 1 vote down

Does the following work?

$Location = (switch ($Extension) {
               doc {"C:\Users\username\Documents\"; break}
               exe {"C:\Users\username\Downloads\"; break}
               default {"C:\Users\username\Desktop\"}
             })

Or maybe

$Location = $(switch ($Extension) {
               doc {"C:\Users\username\Documents\"; break}
               exe {"C:\Users\username\Downloads\"; break}
               default {"C:\Users\username\Desktop\"}
             })

Don't have v1 here to test, right now but I think that might work.

link|flag
Aren't your two choices the same? – John Saunders Apr 10 at 22:55
Not anymore, thanks :) – Johannes Rössel Apr 11 at 7:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.