Windows PowershellサポートTOPへ

Windows Powershellによるパスを結合する方法を紹介

パスを結合する方法

サンプルソース



(入力)

Join-Path C:\Windows \test.txt


(出力)

C:\Windows\test.txt


サンプルソース


結合したパスが実際に存在するかチェックする


(入力)

Join-Path C:\Windows \test.txt -resolve


(出力)

Join-Path : パス 'C:\Windows\test.txt' が存在しないため検出できません。


(入力)

Join-Path C:\Windows \system32 -resolve


(出力)

C:\Windows\system32


サンプルソース


ワイルドカード指定でパスを結合する


(入力)

join-path c:\win* System* -resolve


(出力)

C:\Windows\System
C:\Windows\System32
C:\Windows\SystemApps
C:\Windows\SystemResources
C:\Windows\system.ini



  

戻る




Copyright (C) Windows Powershellサポート by wannko All Rights Reserved.
お問合せ先 ⇒ nachiko★wannko.net(★を@に変更して下さい。)