在VB中如何打开程序根目录下的www/php文件夹
发布网友
发布时间:2022-04-18 10:16
我来回答
共1个回答
热心网友
时间:2022-04-18 11:45
代码如下:
dim
MyPath
as
string
dim
ThePath
as
string
'获得当前的目录
MyPath=app.path
'比较简单的获得当前的分区,同时生成该文件夹的
绝对路径
ThePath=left(MyPath,2)
&
“\www\php”
'用
shell函数
调用explore.exe程序来打开文件夹
shell
“explore.exe
”
&
ThePath