株式会社ヴァンデミックシステム

Blog

<スポンサーリンク>

フルパス欲しいってとき、あるよね。

PS C:\WORK> Get-ChildItem .\test.csv


    ディレクトリ: C:\WORK


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
-a----       2017/12/07     17:08         708286 test.csv

#フルパス
PS C:\WORK> (Get-ChildItem .\test.csv).FullName
C:\WORK\test.csv

#拡張子なしファイル名
PS C:\WORK> (Get-ChildItem .\test.csv).BaseName
test

#拡張子
PS C:\WORK> (Get-ChildItem .\test.csv).Extension
.csv

#拡張子付きファイル名
PS C:\WORK> (Get-ChildItem .\test.csv).Name
test.csv

<スポンサーリンク>

コメントを残す

Allowed tags:  you may use these HTML tags and attributes: <a href="">, <strong>, <em>, <h1>, <h2>, <h3>
Please note:  all comments go through moderation.

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)