Power Shell
[ps] 폴더 존재여부 검사하기
동동(이재동)
2009. 10. 12. 15:16
function CopyFiles
{
if (test-path $OriginalPath)
{
echo "The folder exists2"
}
}