extracting file from desktop to current folder

1 次查看(过去 30 天)
I want to extract file from desktop into current folder by using script . how can I do that?

回答(1 个)

Ankit
Ankit 2022-9-12
Read more about movefile in the following link: Move or rename file or folder - MATLAB movefile - MathWorks Deutschland
source = 'C:\Users\Desktop\xyz.pdf';
destination = pwd;
movefile(source,destination)

类别

Help CenterFile Exchange 中查找有关 Desktop 的更多信息

产品


版本

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by