-
Notifications
You must be signed in to change notification settings - Fork 153
Description
I have an issue in cd into a folder has a name containing spaces!
`c:\users\public\documents> dir
Volume in drive C has no label.
Volume Serial Number is 2404-7994
Directory of c:\users\public\documents
04/12/2020 03:53 AM
.04/12/2020 03:53 AM ..
04/12/2020 03:50 AM 'test
04/12/2020 03:53 AM foo poo
04/12/2020 03:50 AM test
04/12/2020 03:50 AM test test 3
04/12/2020 03:50 AM test'
04/12/2020 03:50 AM test2
0 File(s) 0 bytes
8 Dir(s) 163,082,391,552 bytes free
c:\users\public\documents>
`
`c:\users\public\documents> cd "foo poo"
{{{ExecCmdModuleException}}}{{{SharPyShellError}}}
Volume in drive C has no label.
Volume Serial Number is 2404-7994
Directory of c:\users\public\documents
Directory of c:\users\public\documents
File Not Found
c:\users\public\documents>
c:\users\public\documents> cd 'foo poo'
{{{ExecCmdModuleException}}}{{{SharPyShellError}}}
Volume in drive C has no label.
Volume Serial Number is 2404-7994
Directory of c:\users\public\documents
File Not Found
c:\users\public\documents>
`
I tried putting folder name in single / double quotes, still getting same error!