YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* ファイル検索 UNIXのfindのようにファイル名検索 [#x2585d3e]
*** ファイル名(フォルダ名)による再起検索 [#qde9c5a1]
dir -Recurse "*.js" | select -First 10 FullName
dir -Recurse -File "*index*" | select -First 10 fullname...
dir -Recurse -Directory "*img*" | select -First 10 fulln...
dir -Recurse "*.png","*.jpg" | select -First 10 fullname...
*** 再帰検索でmaxdepthを指定する 1 [#decc0b85]
dir "*.txt" | select fullname # ...
dir "*.txt", "*\*.txt" | select fullname # ...
dir "*.txt", "*\*.txt", "*\*\*.txt | select fullname # ...
*** 再帰検索でmaxdepthを指定する 2 [#mf30a0d2]
dir -Depth 1 | ? { $_.Name -like "*.txt" } | select full...
dir -Depth 1 -Recurse -Filter *.txt | select fullname
FullName
--------
C:\temp\1.txt
C:\temp\foo\2.txt
PS5.0以上 http://stackoverflow.com/questions/13249085/lim...
*** 相対パスを取得 [#o6c92ecb]
dir -Recurse "*.txt" | select -First 10 | Resolve-Path...
*** CygpathでUNIX式の/区切りのファイル名へ変換 [#q29ea311]
dir -Recurse *.txt | % { cygpath.bat $_.FullName }
あらかじめcygpathはパスを調整しておくこと。
終了行:
* ファイル検索 UNIXのfindのようにファイル名検索 [#x2585d3e]
*** ファイル名(フォルダ名)による再起検索 [#qde9c5a1]
dir -Recurse "*.js" | select -First 10 FullName
dir -Recurse -File "*index*" | select -First 10 fullname...
dir -Recurse -Directory "*img*" | select -First 10 fulln...
dir -Recurse "*.png","*.jpg" | select -First 10 fullname...
*** 再帰検索でmaxdepthを指定する 1 [#decc0b85]
dir "*.txt" | select fullname # ...
dir "*.txt", "*\*.txt" | select fullname # ...
dir "*.txt", "*\*.txt", "*\*\*.txt | select fullname # ...
*** 再帰検索でmaxdepthを指定する 2 [#mf30a0d2]
dir -Depth 1 | ? { $_.Name -like "*.txt" } | select full...
dir -Depth 1 -Recurse -Filter *.txt | select fullname
FullName
--------
C:\temp\1.txt
C:\temp\foo\2.txt
PS5.0以上 http://stackoverflow.com/questions/13249085/lim...
*** 相対パスを取得 [#o6c92ecb]
dir -Recurse "*.txt" | select -First 10 | Resolve-Path...
*** CygpathでUNIX式の/区切りのファイル名へ変換 [#q29ea311]
dir -Recurse *.txt | % { cygpath.bat $_.FullName }
あらかじめcygpathはパスを調整しておくこと。
ページ名: