What this code do?
Mostrar comentarios más antiguos
I would like to know what this code does?
dos('rm *.ascii');
thanks
Respuestas (2)
Geoff Hayes
el 24 de Jun. de 2014
2 votos
In the Command Window type help dos or doc dos. The dos function executes a DOS command and returns the result:
status = dos(command) executes the specified DOS command for Windows® platforms, and waits for the command to finish execution before returning the exit status to the status variable
The command string in this case is rm *.ascii which should remove all files with the ascii extension from the current directory.
2 comentarios
subha
el 24 de Jun. de 2014
Geoff Hayes
el 24 de Jun. de 2014
I should have indicated that I ran this piece of code on my Mac where the rm command is valid and so will (and did!) remove all files with the ascii extension...
Image Analyst
el 24 de Jun. de 2014
Editada: Image Analyst
el 4 de Mayo de 2020
1 voto
Does that command even work, or does it throw an error?
For DOS, use del instead of rm. Or use the system() function instead of the dos() function.
4 comentarios
subha
el 25 de Jun. de 2014
Image Analyst
el 25 de Jun. de 2014
Yeah, because it's not a DOS command. Try using del instead of rm if you want to run it.
subha
el 25 de Jun. de 2014
Waqar Khan
el 4 de Mayo de 2020
Thank you
Categorías
Más información sobre Search Path 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!