Powershell

target:PowerShell

「C:\Users」フォルダ内の PDFファイルを検索。

Arguments:

(Get-ChildItem -Recurse \"/C:\Users/*.pdf\").Fullname ;

「C:\Users」フォルダ内の 更新日が、2017/04/03 のテキストファイルを検索。

Arguments:

(Get-ChildItem -Recurse \"C:\Users\*.txt\" | Where-Object {($_.LastWriteTime).toString(\"yyyyMMdd\") -eq \"20170403\"}).Fullname ;

Macの場合もフォルダのパスを変更すれば、同様のことが出来ます。

※Mac版、PowerShellのインストールが必要です。

「Applications」フォルダ内の PDFファイルを検索。

Arguments:

(Get-ChildItem -Recurse \"/Applications/*.pdf\").Fullname ;