码迷,mamicode.com
首页 > 其他好文 > 详细

关于 MAXScript 如何剪切文件夹

时间:2014-09-11 15:10:32      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   文件   div   sp   log   c   

MAXScript 中可以对文件进行创建删除复制等操作但是唯独不能删除文件夹...

网上搜了一下批处理的剪切方法,在 MAXScript 里调用一下就好了

fn xcopy oldfile newfile =
(
    newfilepath = newfile + "\\" + getFilenameFile oldfile
    xcopy_cmd = "xcopy /s /e /i /y " + oldfile + " " + newfilepath + " &&rd /s /q " + oldfile
    doscommand (xcopy_cmd as string)
--     print xcopy_cmd
    )
xcopy "C:\abc" "E:\123"

其实上面的批处理不是真正意义上的剪切,而是把文件复制到指定位置后删除原文件夹.

不过一样完成任务.

关于 MAXScript 如何剪切文件夹

标签:style   blog   color   os   文件   div   sp   log   c   

原文地址:http://www.cnblogs.com/3dxy/p/3966352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!