Different between ./ , ../ , ../../ , ~/ on file path(URL) in asp.net

后端 未结 2 2083
囚心锁ツ
囚心锁ツ 2020-12-23 00:16

I have a script file .


See the path is ~/Script. But if I Entered

2条回答
  •  -上瘾入骨i
    2020-12-23 00:55

    Let's see...

     .    = this directory
     ..   = the parent directory
     ../  = the parent directory
     ~/   = the user's home directory or the application's, in ASP
     /    = the root directory
    
     ../../ = the parent's parent directory 
    

    and so on.

    BTW, this works for all Linux/Unix systems.

提交回复
热议问题