Batch file to find all Access Databases -
i need creating batch file looks in file dir files have .accdb, writes file name , full path text file. first time doing more detail better. understand can create other batch files.
this search current directory , below:
dir *.accdb /s /b /a-d >file.txt
this form of command search particular folder , write file in location:
dir "c:\folder\*.accdb" /s /b /a-d >"d:\other folder\file.txt"
Comments
Post a Comment