* 获取当前路径的示例程序 */publicclassMain{publicstaticvoidmain(String[]args){StringcurrentPath=System.getProperty("user.dir");System.out.println("当前路径: "+currentPath);}} 1. 2. 3. 4. 5. 6. 7. 8. 9. 上述代码使用System.getProperty("user.dir")获取当前路径,并通过System.out.println将...
1. Shell 版本 #获取当前脚本所在绝对路径 cur_dir=$(cd"$(dirname"$0")"; pwd)2. C语言版本 方法一、用realpath函数。这种方法用于开机启动程序获取自身目录会出错charcurrent_absolute_path[MAX_SIZE];//获取当前目录绝对路径if(NULL == realpath("./", current_absolute_path)) { printf("***Error***...