gpt4 book ai didi

matlab - 使用matlab命令重命名文件

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:11 28 4
gpt4 key购买 nike

file1 = fullfile(pwd,'folder','toto.txt');
file2 = fullfile(pwd,'folder','toto2.txt.sav');

movefile(file1,file2)

=>这将创建一个名为 toto2.txt.sav 的文件夹而我正在寻找重命名同一目录中的文件

有什么想法吗?

最佳答案

检查 documentation :

Renaming a File in the Current Folder
In the current folder, rename myfunction.m to oldfunction.m: movefile('myfunction.m','oldfunction.m')

因此:

o=pwd
cd('folder')
movefile('toto.txt','toto2.txt.sav')
cd(o);

关于matlab - 使用matlab命令重命名文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20101329/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com