anc95 / inquirer-file-tree-selection

inquirer prompt for select a file or dir by file tree
50 stars 26 forks source link

Cannot change partition in windows. #108

Open kennarddh opened 1 year ago

kennarddh commented 1 year ago

After go to partition root you cannot go to parent directory and to other partition

anc95 commented 1 year ago

@kennarddh My OS is Mac OSX. so I can't reproduce this issue, do you have a chance to help identifying the cause of the issue on windows, It will be great appreciate.

kennarddh commented 1 year ago

@anc95 I think it's because nodejs path.dirname

> path.dirname('D://')
'D:/' // This doesn't return root path in windows
> path.dirname('D://test/test/test')
'D://test/test'

image

https://stackoverflow.com/a/28241690/14813577