Borrar filtros
Borrar filtros

Create dir using greek symbol

1 visualización (últimos 30 días)
Gaetano Pavone
Gaetano Pavone el 10 de Nov. de 2021
Editada: dpb el 10 de Nov. de 2021
How can I create a dir whose name includes \Delta?

Respuestas (1)

dpb
dpb el 10 de Nov. de 2021
Editada: dpb el 10 de Nov. de 2021
Which OS/file system?
Even if it is allowed by the above combination, I would strongly advise against doing so; it'll just lead to more grief in dealing with the resulting directory than the enhanced cosmetics can possibly be worth.
But, if one is bound to create such misery for oneself, simply build the name as variable with the appropriate codepage char() value embedded in the variable. Of course, you'll have to have that kludge everytime you try to do anything with the result.
The MATLAB file handling/naming functions don't understand TeX so you can't use the TeX interpreter like with text; you have to embed the codepage symbol manually into the variable.
All in all, just abadidea™
Against my better judgement...
>> badideadirname=char(916);
>> mkdir(badideadirname)
>> dir *.
. .. Δ
>>
It can be done under Win10/NTFS; I still don't recommend doing so.

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by