我想在我的代码中使用地址,例如:
E:\ folder1中\测试\ test.txt的
我的问题是:如果没有"我怎么能使用那个路径地址? E:" ? 我想在没有E的情况下用该命令写一些带有命令的文本:特别是 " :"。但我需要一些技巧 删除" E"和" :"。任何的想法 ? 我尝试使用
..\..\
和
'~\\\folder1\test\\\'
但不能工作。 如果你有这个问题的技巧,请告诉我解释。
答案 0 :(得分:0)
您不一定需要驱动器号:Function IsOutlookOpen()
'returns TRUE if Outlook is running
Dim olApp As Outlook.Application
On Error Resume Next
Set olApp = GetObject(, "Outlook.Application")
On Error GoTo 0
If olApp Is Nothing Then
IsOutlookOpen= False
Else
IsOutlookOpen= True
End If
End Function
是指\folder
如果您拥有路径并想要删除驱动器号:
<current drive:>\folder
对于第一种方法,请参阅set "folder=E:\folder1\test\test.txt"
for %%A in (%folder%) do echo Method1: %%~pnxA
echo Method2: %folder:~2%
,第二种方法请参阅for /?