Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the first powershell script I have attempted. When I run it, part one runs fine and creates the log.txt, but after running it again it still runs part 1. How can I check if the log file exists??

EDIT: I forgot to mention that I am running the script from PowerShell ISE if that makes a difference.

#Variables.
#Set working directory to scripts location.
$scriptpath = $MyInvocation.MyCommand.Path
$dir = Split-Path $scriptpath

#Check if log file exists.
$ChkFile = "%userprofile%\Desktop\log.txt" 
$FileExists = (Test-Path $ChkFile -PathType Leaf)

#Set dir to script location.
Set-Location $dir

#Part 1.
If (!($FileExists)) 
{
    Write-Host "Part 1"
    echo 0 >>log.txt
}
#Part 2.
ElseIf ($FileExists)
{
    Write-Host "Part 2"
}
share|improve this question

1 Answer

up vote 2 down vote accepted

% is for cmd.exe variable expansion. You need a different syntax for PowerShell. Instead use:

 "$env:userprofile\Desktop\log.txt" 
share|improve this answer
Thank you. That fixed it. Do all cmd.exe commands not work in powershell? – arynhard May 31 '12 at 22:48
Could the same be done with %windir% -> $env:windir ?? – arynhard May 31 '12 at 23:01
1  
@AndrewRynhard If the command is implemented with cmd.exe then it will not work in PowerShell unless you invoke it via & cmd.exe /c <DOS COMMAND HERE>. If the command is actually a command line program like xcopy it will work fine in PowerShell. – Andy Arismendi May 31 '12 at 23:05
1  
Andy is spot on for commands, but the percent (%) indicator falls under a different, though like-minded, rule: if the feature is implemented by cmd.exe then you must find the analogous feature in PowerShell. In this instance, %xyz% indicates an environment variable under cmd.exe, while $env:xyz indicates the same env var in PowerShell. – msorens Jun 1 '12 at 15:43
@msorens Actually you can pass in cmd.exe operators. Try these: & cmd.exe /c echo '%userprofile%\Desktop\log.txt' and & cmd.exe /c dir '"%ProgramFiles%"' '&' dir '"%windir%"'. They just get sent as strings to cmd.exe which evaluates them at runtime. – Andy Arismendi Jun 1 '12 at 20:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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