~$ alias Any_Name=/home/User/Desktop/Folder\ Name
~$ Any_Name
bash: /home/User/Desktop/Folder: No such file or directory
~$
that same bash error is shown even if double quotes is used
So how do i reach that folder using the alias command ?
~$ cd "$Any_Name"
~$
~$ cd $Any_Name
~$ pwd
/home/User
Also does not seem to work