获取 / 设置 进程的工作目录(当前目录)

1、C++:

  GetCurrentDirectory()             // 获取当前进程的工作目录  

  SetCurrentDirectory()             // 设置当前进程的工作目录

  

2、C#:  

  System.IO.Directory.GetCurrentDirectory()    // 获取当前进程的工作目录

  System.IO.Directory.SetCurrentDirectory()    // 设置当前进程的工作目录

  Application.StartupPath              // 应用程序启动目录

猜你喜欢

转载自www.cnblogs.com/dhqy/p/9084303.html