【已解决】请问怎么移动文件夹呢?
本帖最后由 13gu 于 2019-5-13 16:55 编辑请问怎么移动文件夹呢?
移动文件知道怎么写,
FileMove(@WindowsDir & "\web\a.jpg", @WindowsDir & "\web\b.jpg")
文件夹应该怎么写?
DirMove("源目录", "目的目录"[, 标志 = 0])
afan 发表于 2019-5-13 16:39
DirMove("源目录", "目的目录"[, 标志 = 0])
DirMove("@WindowsDir & \web\", "@WindowsDir & \web1\", 1)
请这样哪里错了? 13gu 发表于 2019-5-13 16:45
DirMove("@WindowsDir & \web\", "@WindowsDir & \web1\", 1)
请这样哪里错了?
DirMove(@WindowsDir & "\web\", @WindowsDir & "\web1\", 1) 13gu 发表于 2019-5-13 16:45
DirMove("@WindowsDir & \web\", "@WindowsDir & \web1\", 1)
请这样哪里错了?
引号问题变量(宏)不能直接使用引号包围
DirMove(@WindowsDir & "\web", @WindowsDir & "\web1", 1) kk_lee69 发表于 2019-5-13 16:47
DirMove(@WindowsDir & "\web\", @WindowsDir & "\web1\", 1)
谢谢:face (23): afan 发表于 2019-5-13 16:47
引号问题变量(宏)不能直接使用引号包围
DirMove(@WindowsDir & "\web", @WindowsDir & "\web1", 1)
谢谢:face (23)::face (20):
页:
[1]