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.
我知道要在命令提示符下显示所有文件(如果有)的备用数据流,这就是 command dir /R。但是,如果我只想显示具有备用数据流的文件,我该怎么做?
dir /R
dir /s /r | find ":$DATA"
或者
dir /r | find ":$DATA"
第一个将在所有子目录中搜索。第二个仅在当前文件夹中。这些还将显示分配给目录的 ADS。仅适用于文件:
dir /a-d /s /r | find ":$DATA"