2013-04-12 58 views
1

我想要的文件夾中的路徑重命名使用MATLAB腳本我怎麼能重命名文件夾:使用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

您可以使用MOVEFILE函數。它也適用於文件夾。

movefile('c:\My Path\New Folder\', 'c:\MyPath\NewFolder') 
+0

我擔心的是,文件夾中的內容將隨之移動。 – jdl

+0

是的。我剛測試過。 – yuk