Muni Bus

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

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

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

PS > Get-ChildItem C:\Windows\Fonts\ms*.ttc
    ディレクトリ: C:\Windows\Fonts
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----        2021/06/05     21:05        8990160 msgothic.ttc
-a----        2021/06/05     21:05       21402152 msjh.ttc
-a----        2022/11/09     14:15       14441192 msjhbd.ttc
-a----        2021/06/05     21:06       12875740 msjhl.ttc
-a----        2021/06/02      6:29        9900400 msmincho.ttc
-a----        2021/06/05     21:05       19647736 msyh.ttc
-a----        2021/06/05     21:06       16829116 msyhbd.ttc
-a----        2021/06/05     21:06       12139380 msyhl.ttc
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