我目前正試圖拉一個powershell
腳本駐留在項目子文件夾中。當我的batch
文件運行時,它會嘗試在項目中查找文件路徑,但我沒有取得任何成功。團隊城市和批處理文件
我第一次嘗試通過子文件夾直接,因爲它是在TeamCity的:
set file = "subFolder\myPowershell.ps1"
我我試圖第二次嘗試撥打:
set file = %~dp0"subFolder\myPowershell.ps1"
然後我嘗試:
set file = %cd%"subFolder\myPowershell.ps1"
仍然沒有成功。如何從batch
文件中獲得Teamcity
項目文件夾中此powershell
腳本的路徑?
'%〜dp0「subFolder \ myPowershell.ps1」'對我來說引號沒有正確定位。你試過'「%〜dp0subFolder \ myPowershell.ps1」'? – Laf
'set「file =%〜dp0subFolder \ myPowershell.ps1」'將純路徑導入變量'file'而沒有周圍的引號...... – aschipfl
@Laf是的,我試圖在引用中包含'%〜dp0'。 –