📜  cmd 查找文件目录 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:24.046000             🧑  作者: Mango

代码示例1
# EXAMPLE: show all files that start with abc in the current directory (option: only show filepaths)
dir /b "abc*" 

# SYNTAX
# dir  ""

# OPTIONS
# /b    :    Show only filenames 
# /a-d  :    Show files only (no folders)
# /ad   :    Show folders only (no files)
# /s    :    Include the subfolders in the search

# https://www.dummies.com/computers/operating-systems/windows-xp-vista/how-to-search-for-files-from-the-dos-command-prompt/