Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WMIクエリ言語を使用してディレクトリ内のファイルをどのように検索しますか?
これは私がこれまでに持っているものです:
select * from Cim_DataFile where path = "\\\\C:\\Users\\name\\"
クエリは結果を返しません。
どんな助けでも大歓迎です。
プロパティのドライブを削除し、Pathプロパティでその値を指定する必要があるDriveため、WQL文を次のように書き直します。
Path
Drive
SELECT * from Cim_DataFile where path = "\\ Users \\ name \\" and Drive = "C:"