This topic created in 4290 days ago, the information mentioned may be changed or developed.
我运行 :
copy file_1 ./*/file_1
提示:文件名、目录名或卷标语法不正确。
有什么办法可以解决?
3 replies • 2014-08-10 19:20:30 +08:00
 |
|
1
caoyue Aug 10, 2014
for /d %%i in (.\*) do copy file_1 "%%i"
|
 |
|
2
alia Aug 10, 2014
发现我错把“\”打成了"/"。汗
|