gpt4 book ai didi

powershell - Powershell填写路径

转载 作者:行者123 更新时间:2023-12-03 01:21:57 24 4
gpt4 key购买 nike

我当前的目录是“C:\ devel \ test \”

我想运行像command -m 'pwd'\data\test.xml这样的东西,就像我输入了command -m C:\devel\test\data\test.xml一样

如果我正在编写脚本,我将:

$pwd = pwd
command -m $pwd\data\test.xml

但不确定如何在提示时执行此操作。

更新

这可能是IronPython问题。使用下面 ipy -m ($pwd.path + "\data\test.xml")建议的命令 azhrei,我得到以下错误:
Unhandled exception:
Traceback (most recent call last):
File "C:\Program Files (x86)\IronPython 2.7\Lib\runpy.py", line 101, in _get_module_details
File "C:\Program Files (x86)\IronPython 2.7\Lib\runpy.py", line 170, in run_module
File "C:\Program Files (x86)\IronPython 2.7\Lib\pkgutil.py", line 456, in get_loader
File "C:\Program Files (x86)\IronPython 2.7\Lib\pkgutil.py", line 466, in find_loader
File "C:\Program Files (x86)\IronPython 2.7\Lib\pkgutil.py", line 422, in iter_importers
ImportError: Import by filename is not supported.

当我运行 ipy -m C:\devel\test\data\test.xml时,它可以正常工作。

最佳答案

在命令提示符处使用%CD%,因此:
command -m %CD%\data\test.xml
或者,如果您想在Powershell提示符下遇到问题,请执行以下操作:
command -m ($pwd.path + "\data\test.xml")

关于powershell - Powershell填写路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11515054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com