PowerShell相对路径转绝对路径 PowerShell中把相对路径转换为绝对路径的2个方法
人气:0想了解PowerShell中把相对路径转换为绝对路径的2个方法的相关内容吗,在本文为您仔细讲解PowerShell相对路径转绝对路径的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:PowerShell,相对路径转绝对路径,下面大家一起来学习吧。
在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文件是不存在的。
加载全部内容