dir /s /b 但是,上面的命令并没有根据文件的最后更新时间来显示文件。 最佳答案 -6ren">
gpt4 book ai didi

windows - 如何在 Windows 中使用 "dir"命令根据文件的上次更新时间对文件进行排序

转载 作者:行者123 更新时间:2023-12-02 23:17:09 24 4
gpt4 key购买 nike

我在 Windows 10 的命令行提示符下使用“dir”命令。我尝试了以下操作:

c:\my_folder> dir /s /b

但是,上面的命令并没有根据文件的最后更新时间来显示文件。

最佳答案

打开powershell console并输入此命令:

Get-ChildItem | Sort-Object -Property LastWriteTime

如果您想要降序排列,请使用:

Get-ChildItem | Sort-Object -Property LastWriteTime -Descending

关于windows - 如何在 Windows 中使用 "dir"命令根据文件的上次更新时间对文件进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62609234/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com