Ventoy Forums

Full Version: dir alias is not working for me
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Am I making a mistake?
I would like my directory "footprint" to show as "Small Footprint for Old Computers".
It shows footprint (no syntax errors).

Am I doing something wrong here?

The code below is in the section of "menu_alias"

Code:
        {
            "dir":"/footprint/",
            "alias":"Small Footprint for Old Computers"
         },
Try this
Code:
{
        "dir":"/footprint", <------  Remove the trailing slash
        "alias":"Small Footprint for Old Computers"
},
(08-19-2021, 09:38 AM)longpanda Wrote: [ -> ]Try this
Code:
{
        "dir":"/footprint", <------  Remove the trailing slash
        "alias":"Small Footprint for Old Computers"
},
Thank you very much!!!
Solved?