web-dev-qa-db-ja.com

Advanced Query Syntax(AQS)を使用してWindowsでx日より古いファイルを見つける方法は?

あなたは今週より古いファイルを使用して見つけることができます

datemodified:< this week

だが

datemodified:< 7 days

動作しないようです。

5
philk

Windowsでx日より古いファイルを見つける方法

datemodified:< 7 days

動作していないようです。

<または>を使用して相対日付の「値」を参照する場合、値を日付に関連するキーワード値にすることはできません(以下にリスト)。 dd/mm/yyという形式(または「地域と言語」の設定で指定されている形式)を使用した値である必要があります。

x日より古いファイルを検索するには、以下を使用します。

datemodified:< dd/mm/yy

ここで、dd/mm/yyは、現在の(今日の)日付のx日前です。

ノート:

  • 日付を入力するときは、[コントロールパネル]> [地域と言語]の設定に一致する日付形式を使用してください。

  • これには1つの例外があります。年は常に4桁で入力する必要があります。


フィルターを使用した検索

サポートされている日付関連のフィルターの例を以下に示します

Criteria                                Syntax/Example
Date created (exact date)               datecreated:8/2/2012
Date created (range)                    datecreated:8/2/2012..8/3/2012
Date created (before)                   datecreated:<8/2/2012
Date created (after)                    datecreated:>8/2/2012
Date created prior to the current year  datecreated:a long time ago
Date created within the current year    datecreated:earlier this year
Date created within the current month   datecreated:earlier this month
Date created within the current week    datecreated:earlier this week
Date created yesterday                  datecreated:yesterday
Date created today                      datecreated:today
Date modified (exact date)              datemodified:8/2/2012
Date modified (range)                   datemodified:8/2/2012..8/3/2012
Date modified (before)                  datemodified:<8/2/2012
Date modified (after)                   datemodified:>8/2/2012
Date modified prior to the current year datemodified:a long time ago
Date modified within the current year   datemodified:earlier this year
Date modified within the current month  datemodified:earlier this month
Date modified within the current week   datemodified:earlier this week
Date modified yesterday                 datemodified:yesterday
Date modified today                     datemodified:today

ソース Windows 7検索の説明


日付に関連するキーワード値

次のキーワードは、日付を参照するときに使用できます。

相対日付:今日、明日、昨日

マルチワードの相対日付:週、来月、先週、先月、または来年。

値は、次のように契約で入力することもできます:今週、来月、先週、過去1か月、来年。

日:日曜日、月曜日...土曜日

月:1月、2月... 12月

ソース Windows 7でファイルを検索するための高度なクエリ構文の使用


参考文献

7
DavidPostill