Create dir using greek symbol

1 次查看(过去 30 天)
Gaetano Pavone
Gaetano Pavone 2021-11-10
编辑: dpb 2021-11-10
How can I create a dir whose name includes \Delta?

回答(1 个)

dpb
dpb 2021-11-10
编辑:dpb 2021-11-10
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.

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

标签

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by