Muni Bus

パソコンの操作方法や設定方法を忘れないようにメモしています。ブログを一回引っ越ししているので、所々表示がかなり乱れています・・・

【PowerShell】ディレクトリ内のファイルの親ディレクトリを取得する

Get-ChildItemコマンドレットを使い、DirectoryプロパティのNameプロパティを参照する。

PS > (Get-ChildItem C:\Windows\Fonts\ms*.ttc).FullName
C:\Windows\Fonts\msgothic.ttc
C:\Windows\Fonts\msjh.ttc
C:\Windows\Fonts\msjhbd.ttc
C:\Windows\Fonts\msjhl.ttc
C:\Windows\Fonts\msmincho.ttc
C:\Windows\Fonts\msyh.ttc
C:\Windows\Fonts\msyhbd.ttc
C:\Windows\Fonts\msyhl.ttc
PS > (Get-ChildItem C:\Windows\Fonts\ms*.ttc).Directory
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
d-r-s-        2022/11/10      1:09                Fonts
PS > ((Get-ChildItem C:\Windows\Fonts\ms*.ttc).Directory).Name
Fonts
Fonts
Fonts
Fonts
Fonts
Fonts
Fonts
Fonts