码迷,mamicode.com
首页 > 系统相关 > 详细

Powershell-抛文档并捕获异常

时间:2019-08-23 16:19:15      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:pre   code   select   time   mes   top   err   desc   tin   

#source1 file location
$source1 = "C:\users\me\desktop\test1"

#dest1 file location
$dest1 = "C:\users\me\desktop\final\"

#finds files in $source1 that are the very latest and copies to $dest1
try {
Get-ChildItem $source1 -Recurse | Sort-Object -Property CreationTime -Descending | Select-Object -First 1 | Copy-Item -Destination $dest1 -ErrorAction ‘Stop‘
}
catch{
    $_.Exception.Message | Out-File -FilePath .\errorlog.txt -Encoding utf8
}

 

Powershell-抛文档并捕获异常

标签:pre   code   select   time   mes   top   err   desc   tin   

原文地址:https://www.cnblogs.com/JinweiChang/p/11400647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!