我想使用Matlab脚本重命名路径中的文件夹:
c:\My Path\New Folder\ --> c:\MyPath\NewFolder\ %remove the spaces in the path name
得到了我想要的工作:
system('7z e "C:\Public\test\dry?testing41013\Log?#1\max_logs_can_messages.tgz" -o"C:\Public\test\dry testing41013\Log #1\"')
必须使用“?”对于第一个路径中的空格而不是第二个路径中的空格
答案 0 :(得分:0)
您可以使用MOVEFILE功能。它也适用于文件夹。
movefile('c:\My Path\New Folder\', 'c:\MyPath\NewFolder')