PowerShell/ファイル
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
-[[Test-Pathコマンドレットを使用してファイル・フォルダの...
-[[【PowerShell】ファイルの作成日時や更新日時を取得する:h...
-[[PowerShellでテキストファイルを連結する方法:https://win...
-[[PowerShell を使ってテキストファイル読み込み/書きこみ:h...
-[[ファイルへの上書きと追記方法・Set-Content,Add-Content:...
-[[【PowerShell】パスの操作方法まとめ:https://bgt-48.blog...
*Get-ChildItem [#r9ec4a21]
***フォルダ内のファイルを一気に消す [#r5049523]
-[[PowerShellでフォルダ内のファイルを一気に消す:https://w...
-[[【PowerShell】所定のフォルダ配下にある所定のファイルを...
Get-ChildItem [対象フォルダ] -Include *.* -Recurse | del
***サブフォルダまで再帰的に検索を行う [#d8f7c5cb]
-[[PowerShellのGet-ChildItemコマンドレットでファイル名の...
Get-ChildItem [対象フォルダ] -Recurse
***指定した複数の拡張子のファイルのみリストアップ [#a68a1...
-[[複数の-Filtersが指定されたpowershell Get-ChildItem:htt...
Get-ChildItem [対象フォルダ] -Include "*.csv","*.xlsx"
*アクセス権 [#u417d807]
-[[Powershellでフォルダアクセス権を手軽に確認する:https:/...
*Tips [#uc78989f]
-[[[PowerShell] フォルダ内のファイル一覧を取得し、一括で...
-[[【Powershell】テキストファイルを分割する:http://souegg...
***カレントフォルダにある *.zip の中身を カレントフォルダ...
Get-ChildItem -Recurse -File -Include *.zip | ForEach { ...
***指定した行数でファイル分割 [#u9fed46b]
$i=0; cat [分割対象ファイル] -ReadCount [行数] | % { $_ ...
***ファイル名 [#y6c44c74]
-[[実行中のスクリプトのファイル名を取得する方法:https://b...
-[[パスの文字列から拡張子やファイル名を取り出す方法:https...
*圧縮 [#ndd3bf31]
**[[Compress-Archive:https://docs.microsoft.com/en-us/pow...
-[[【Compress-Archive】PowerShellでファイルやフォルダをZI...
-[[超簡単! Powershellでファイルの圧縮/解凍:https://qiita....
*バイナリファイル [#mb6b599c]
**Format-Hex [#u8b0e210]
-[[PowerShellのFormat-Hexコマンドレットでバイナリファイル...
Format-Hex [バイナリファイル]
**cat [#see60f88]
-[[PowerShell(バイナリファイル読み込み):https://life-is-c...
-[[PowerShell(バイナリ書き込み):https://life-is-command.c...
-[[【PowerShell】ファイルを読み込み16進数でバイナリ表示...
-バイナリファイルの内容を16進数で出力
cat [バイナリファイル] -encoding byte | %{$s=""}{$s+="{0...
*隠しファイル [#w35eda1c]
-[[隠しファイル(Hidden属性)の操作:https://yanor.net/wiki/...
*Tips [#e7db7d7d]
**文字列一括置換 [#q9427157]
-[[【Powershell】ファイル内の文字列を置換して上書きする方...
Get-Content .\source.txt | ForEach-Object { $_ -replace ...
終了行:
-[[Test-Pathコマンドレットを使用してファイル・フォルダの...
-[[【PowerShell】ファイルの作成日時や更新日時を取得する:h...
-[[PowerShellでテキストファイルを連結する方法:https://win...
-[[PowerShell を使ってテキストファイル読み込み/書きこみ:h...
-[[ファイルへの上書きと追記方法・Set-Content,Add-Content:...
-[[【PowerShell】パスの操作方法まとめ:https://bgt-48.blog...
*Get-ChildItem [#r9ec4a21]
***フォルダ内のファイルを一気に消す [#r5049523]
-[[PowerShellでフォルダ内のファイルを一気に消す:https://w...
-[[【PowerShell】所定のフォルダ配下にある所定のファイルを...
Get-ChildItem [対象フォルダ] -Include *.* -Recurse | del
***サブフォルダまで再帰的に検索を行う [#d8f7c5cb]
-[[PowerShellのGet-ChildItemコマンドレットでファイル名の...
Get-ChildItem [対象フォルダ] -Recurse
***指定した複数の拡張子のファイルのみリストアップ [#a68a1...
-[[複数の-Filtersが指定されたpowershell Get-ChildItem:htt...
Get-ChildItem [対象フォルダ] -Include "*.csv","*.xlsx"
*アクセス権 [#u417d807]
-[[Powershellでフォルダアクセス権を手軽に確認する:https:/...
*Tips [#uc78989f]
-[[[PowerShell] フォルダ内のファイル一覧を取得し、一括で...
-[[【Powershell】テキストファイルを分割する:http://souegg...
***カレントフォルダにある *.zip の中身を カレントフォルダ...
Get-ChildItem -Recurse -File -Include *.zip | ForEach { ...
***指定した行数でファイル分割 [#u9fed46b]
$i=0; cat [分割対象ファイル] -ReadCount [行数] | % { $_ ...
***ファイル名 [#y6c44c74]
-[[実行中のスクリプトのファイル名を取得する方法:https://b...
-[[パスの文字列から拡張子やファイル名を取り出す方法:https...
*圧縮 [#ndd3bf31]
**[[Compress-Archive:https://docs.microsoft.com/en-us/pow...
-[[【Compress-Archive】PowerShellでファイルやフォルダをZI...
-[[超簡単! Powershellでファイルの圧縮/解凍:https://qiita....
*バイナリファイル [#mb6b599c]
**Format-Hex [#u8b0e210]
-[[PowerShellのFormat-Hexコマンドレットでバイナリファイル...
Format-Hex [バイナリファイル]
**cat [#see60f88]
-[[PowerShell(バイナリファイル読み込み):https://life-is-c...
-[[PowerShell(バイナリ書き込み):https://life-is-command.c...
-[[【PowerShell】ファイルを読み込み16進数でバイナリ表示...
-バイナリファイルの内容を16進数で出力
cat [バイナリファイル] -encoding byte | %{$s=""}{$s+="{0...
*隠しファイル [#w35eda1c]
-[[隠しファイル(Hidden属性)の操作:https://yanor.net/wiki/...
*Tips [#e7db7d7d]
**文字列一括置換 [#q9427157]
-[[【Powershell】ファイル内の文字列を置換して上書きする方...
Get-Content .\source.txt | ForEach-Object { $_ -replace ...
ページ名: