PowerShell中把相对路径转换为绝对路径的2个方法
程序员文章站
2022-05-08 09:50:12
在powershell中,有时候,我们需要把当前的相对路径解析为绝对路径,比如".\test.txt",我们想知道它的绝对路径的话,我们有两种方法可以实现。
1、有一个c...
在powershell中,有时候,我们需要把当前的相对路径解析为绝对路径,比如".\test.txt",我们想知道它的绝对路径的话,我们有两种方法可以实现。
1、有一个cmd-let,它叫resolve-path。
语法如下:
复制代码 代码如下:
resolve-path <相对路径>
如果指定的相对路径的文件或文件夹,不存在,则将提示如下:
复制代码 代码如下:
ps c:\users\zhanghong> resolve-path .\test.txt
resolve-path : 找不到路径“c:\users\zhanghong\test.txt”,因为该路径不存在。
所在位置 行:1 字符: 13
复制代码 代码如下:
+ resolve-path <<<< .\test.txt
+ categoryinfo : objectnotfound: (c:\users\zhanghong\test.txt:str
ing) [resolve-path], itemnotfoundexception
+ fullyqualifiederrorid : pathnotfound,microsoft.powershell.commands.resol
vepathcommand
+ categoryinfo : objectnotfound: (c:\users\zhanghong\test.txt:str
ing) [resolve-path], itemnotfoundexception
+ fullyqualifiederrorid : pathnotfound,microsoft.powershell.commands.resol
vepathcommand
如果位置存在,则提示找到的路径:
复制代码 代码如下:
ps c:\users\zhanghong> resolve-path .\music
path
----
c:\users\zhanghong\music
path
----
c:\users\zhanghong\music
2、使用$executioncontext.sessionstate.path.getunresolvedproviderpathfrompspath方法
这个方法的好处是,不管这个相对路径的文件或文件夹存不存在,都可以顺利的它解析为绝对路径。
举例如下:
复制代码 代码如下:
ps c:\users\zhanghong> $executioncontext.sessionstate.path.getunresolvedproviderpathfrompspath('.\file.txt')
c:\users\zhanghong\file.txt
c:\users\zhanghong\file.txt
实际上,小编的这个c:\users\zhanghong\file.txt文件是不存在的。