//使用appdomain获取当前应用程序集的执行目录 string dir = AppDomain.CurrentDomain.BaseDirectory; //使用path获取当前应用程序集的执行的上级目录 dir = Path.GetFullPath(".."); //使用path获取当前应用程序集的执行目录的上级的上级目录 dir = Path.GetFullPath("../.."); 其他的获取根目录路径方法可以参考博文 http://www.cnblo…
windows下 1)相对路径 public static final String TestDataExcelFilePath="src/omstestdata.xlsx"; 2)绝对路径 public static final String TestDataExcelFilePath="E:\\test\\omstestdata.xlsx";…
用C++写程序,肯定要用预编译头文件,就是那个stdafx.h.不过我一直以为只要在.cpp文件中包含stdafx.h 就使用了预编译头文件,其实不对.在VC++中,预编译头文件是指放到stdafx.h中的头文件才会有效果.如下: file: stdafx.h // stdafx.h : include file for standard system include files, // or project specific include files that are used freque…