extracting file from desktop to current folder
Mostrar comentarios más antiguos
I want to extract file from desktop into current folder by using script . how can I do that?
1 comentario
Fangjun Jiang
el 12 de Sept. de 2022
movefile()
Respuestas (1)
Ankit
el 12 de Sept. de 2022
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)
Categorías
Más información sobre Application Deployment en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!