extracting file from desktop to current folder
2 ビュー (過去 30 日間)
古いコメントを表示
I want to extract file from desktop into current folder by using script . how can I do that?
回答 (1 件)
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)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!