extracting file from desktop to current folder

I want to extract file from desktop into current folder by using script . how can I do that?

답변 (1개)

Ankit
Ankit 2022년 9월 12일

0 개 추천

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)

카테고리

도움말 센터File Exchange에서 Desktop에 대해 자세히 알아보기

제품

릴리스

R2016b

질문:

2022년 9월 12일

답변:

2022년 9월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by