extracting file from desktop to current folder

조회 수: 1 (최근 30일)
Urvashi
Urvashi 2022년 9월 12일
답변: Ankit 2022년 9월 12일
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