フィルターのクリア

How to move file from one folder to another folder?

106 ビュー (過去 30 日間)
Kamran Afroz
Kamran Afroz 2023 年 12 月 28 日
コメント済み: Stephen23 2023 年 12 月 28 日
Hi,
I am renaming my existing file uisng
movefile(oldfilename,rename)
Then I want to move this "rename" file to other folder but how to use "movefile" function where I have stored filename in "rename"?
Thanks.
  1 件のコメント
Stephen23
Stephen23 2023 年 12 月 28 日
The accepted answer calls MOVEFILE twice, which is not required. You can do this with one call:
oldName = 'oldName.txt';
newName = 'newName.txt';
oldPath = 'absolute or relative path to where the file is saved';
newPath = 'absolute or relative path to where you want the file';
movefile(...
fullfile(oldPath,oldName),...
fullfile(newPath,newName))

サインインしてコメントする。

採用された回答

Debraj Maji
Debraj Maji 2023 年 12 月 28 日
I understand that you are trying to rename a file using "movefile" function and then you want to move it to a different location. Given below is the required template that will allow you to do the necessary.
oldfilename = 'your file path';
rename = 'The new name for the file';
% Rename the existing file
movefile(oldfilename, rename);
newFolderPath = 'Define the path to the new folder where you want to move the file';
% Create the full path for the new location by concatenating the folder path and the new filename
newFilePath = fullfile(newFolderPath, rename);
% Move the renamed file to the new folder
movefile(rename, newFilePath);
For more information on the "movefile" function you can refer to the following documentation:
I hope this resolves your query,
With regards,
Debraj.
  1 件のコメント
Kamran Afroz
Kamran Afroz 2023 年 12 月 28 日
Thank you,
It worked for me.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

タグ

製品


リリース

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by