仅当"D:\new work"
文件夹为空时,我才希望将文件从"D:\new work"
移到int x = 3;
int** y = &x;
。可以使用批处理脚本吗?
答案 0 :(得分:2)
您可以这样做:
dir /a-d "D:\new work\*" && (echo Contains files) || (move /Y "D:\work\* "D:\new work")
如果可能有子文件夹要检查是否为空,则只需添加/s
dir /a-d /s "D:\new work\*" && (echo Contains files) || (move /Y "D:\work\*" "D:\new work")