3テラバイト

プログラム関連備忘録サイト。主にゲーム。

PowerShell

PowerShellでディレクトリ内のファイル一覧を取得するコマンドレットGet-ChildItemの使い方

投稿日:

こんにちは、今日はPowerShellでディレクトリ内のファイル一覧を取得するコマンドレットGet-ChildItemの使い方についてまとめていきます。

確認環境

PSVersion 5.1.18362.1110

Get-ChildItemの使い方

実行すると現在のディレクトリ内にあるディレクトリやファイルに一覧が表示されます。

PS C:\Users\santerabyte> Get-ChildItem


    ディレクトリ: C:\Users\santerabyte


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
d-----       2020/11/09     23:30                Test

リンク

Get-ChildItem (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem?view=powershell-7

-PowerShell


comment

メールアドレスが公開されることはありません。 が付いている欄は必須項目です


reCaptcha の認証期間が終了しました。ページを再読み込みしてください。

関連記事

no image

UnityでPowerShellの実行結果を取得する

以下の例ではGet-ChildItemコマンドレットを引数なしで実行、標準出力への出力をDebug.LogでUnityコンソールに出力しています。 System.Diagnostics.Process …

no image

PowerShellでCSVファイルを読み込む

こんにちは、今日はPowerShellでCSVファイルを読み込む方法についてまとめていきます。 確認環境 PSVersion 5.1.18362.1110 CSVファイルを読み込む CSVファイルを出 …

no image

PowerShellで現在のディレクトリを表示するコマンドレットGet-Locationの使い方

こんにちは、今日はPowerShellで現在のディレクトリを表示するコマンドレットGet-Locationの使い方についてまとめていきます。 確認環境 PSVersion 5.1.18362.1110 …

no image

PowerShellの論理演算子一覧

確認環境 PSVersion 5.1.18362.1110 演算子他言語の演算子説明-not!否定!!否定-and&論理積-or|論理和-xor^排他的論理和 リンク if ステートメントにつ …

no image

PowerShellでWindows Management Instrumentation (WMI)オブジェクトを取得するコマンドレットGet-WmiObjectの使い方

こんにちは、今日はPowerShellでWindows Management Instrumentation (WMI)オブジェクトを取得するコマンドレットGet-WmiObjectの使い方についてま …