使用master..xp_dirtree存储过程 也可以使用master..xp_cmdshell存储过程
xp_dirtree是获取目录文件
xp_dirtree @path,@depth,@file
@path, varchar 是路径
@depth, int 是深度
@file , int 是否到文件级别
exec master..xp_dirtree 'd:\back\',1,1
master.xp_cmdshell则是执行批处理
exec master..xp_cmdshell ' dir d:\back\'