标题: [技术讨论] PowerShell获取当前目录路径 [打印本页]
作者: PS2.0 时间: 2017-7-31 09:52 标题: PowerShell获取当前目录路径
复制代码
复制代码
- $ExecutionContext.SessionState.Path.CurrentFileSystemLocation
复制代码
作者: qazplm 时间: 2017-7-31 22:43
本帖最后由 qazplm 于 2017-8-1 11:53 编辑
复制代码
复制代码
[Environment]::CurrentDirectory
[IO.Directory]::GetCurrentDirectory()
(New-Object -Com Scripting.FileSystemObject).GetFolder('.').Path
(New-Object -Com WScript.Shell).CurrentDirectory
作者: PS2.0 时间: 2017-8-1 09:57
回复 2# qazplm
感谢分享。测试了一下,前面2种方法成功,后面4种方法无法获取到希望的内容。
PS C:\Users\hello> cd C:\Test\
PS C:\Test> (gi .).FullName
C:\Test
PS C:\Test> ($pwd).Path
C:\Test
PS C:\Test> [Environment]::CurrentDirectory
C:\Users\hello
PS C:\Test> [IO.Directory]::GetCurrentDirectory()
C:\Users\hello
PS C:\Test> (New-Object -Com Scripting.FileSystemObject).GetFolder('.').Path
C:\Users\hello
PS C:\Test> (New-Object -Com WScript.Shell).CurrentDirectory
C:\Users\hello
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |