UIPath工具取得某个路径下的文件夹的名称 处理的流程如下图 [Edit Code]按钮押下之后写入代码如下 Dim dir As New DirectoryInfo("C:\Users\peiqiang\Desktop\mailToExcelGrid_0.1") For Each d As DirectoryInfo In dir.GetDirectories listA.Add(d.Name) 下图为传入传出的参数 运行之后listB里面的数据就是指定文件夹下面的所有的文件夹名称
function getRootPath(){ //获取当前网址,如: http://localhost:8088/test/test.jsp var curPath=window.document.location.href; //获取主机地址之后的目录,如: test/test.jsp var pathName=window.document.location.pathname; var pos=curPath.indexOf(pathName); //获取主机地址,如: http://lo