Create dir using greek symbol

1 view (last 30 days)
Gaetano Pavone
Gaetano Pavone on 10 Nov 2021
Edited: dpb on 10 Nov 2021
How can I create a dir whose name includes \Delta?

Answers (1)

dpb
dpb on 10 Nov 2021
Edited: dpb on 10 Nov 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.

Categories

Find more on File Operations in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!