dir对特定目录操作
dir命令用于列出指定目录中的文件和子目录。它还可以用于查找具有特定扩展名的文件或文件夹,并为每个文件或文件夹提供详细信息。以下是dir命令的一些常见用法:
列出当前目录中的所有文件和子目录:
dir
列出指定目录中的所有文件和子目录:
dir C:\Users\username\Documents
列出指定目录中的所有以.txt为扩展名的文件:
dir C:\Users\username\Documents\*.txt
列出指定目录中的所有子目录:
dir /ad C:\Users\username\Documents
列出指定目录中所有文件和子目录的详细信息:
dir /a C:\Users\username\Documents
列出指定目录中所有文件和子目录的详细信息,包括隐藏文件和系统文件:
dir /a:h /a:s C:\Users\username\Documents
原文地址: https://www.cveoy.top/t/topic/bsot 著作权归作者所有。请勿转载和采集!