1

我想使用 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\"')

必须使用“?” 对于第一条路径中的空格,而不是第二条路径中的空格

4

1 回答 1

0

您可以使用MOVEFILE功能。它也适用于文件夹。

movefile('c:\My Path\New Folder\', 'c:\MyPath\NewFolder')
于 2013-04-12T14:46:23.213 回答