Get directory of a file name in Javascript

前端 未结 9 1529
囚心锁ツ
囚心锁ツ 2021-01-17 07:41

How to get the directory of a file?

For example, I pass in a string

C:\\Program Files\\nant\\bin\\nant.exe

I want a function that r

9条回答
  •  终归单人心
    2021-01-17 08:34

    I don't know if there is any built in functionality for this, but it's pretty straight forward to get the path.

    path = path.substring(0,path.lastIndexOf("\\")+1);
    

提交回复
热议问题