• 追加された行はこの色です。
  • 削除された行はこの色です。
#author("2019-08-14T07:13:49+09:00","default:ryuichi","ryuichi")
#author("2019-08-14T07:19:16+09:00","default:ryuichi","ryuichi")
* シムリンクなフォルダを削除する [#z1d14f8a]

** 問題: del -Force -Recurseでは削除できない [#h20d825d]

** link.Delete()を使う [#dbb586e4]
 New-Item -Type SymbolicLink -Target dirA dirB
 del -Force -Recurse dirB

** 解決方法: DirectoryInfoオブジェクトのDelete()メソッドを呼ぶ [#dbb586e4]

 
 $link = Get-Item dirB
 $link.Delete()
 
 または
 
 (Get-Item dirB).Delete()
 
** 参考 [#vc078e76]

https://stackoverflow.com/questions/45536928/powershell-remove-symbolic-link-windows


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS