獲取目錄
獲取當前目錄的上級目錄path.getfullpath("..\\")
**using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.io;
namespace pathtest
class program
static void main(string args)
console.writeline(info);
//使用path獲取當前應用程式集的執行的上級目錄
dir = path.getfullpath("..\\");
info = string.format("path方法獲取當前程式集上級目錄:", dir);
console.writeline(info);
//使用path獲取當前應用程式集的執行目錄的上級的上級目錄
dir = path.getfullpath(@"..\..\");
info = string.format("path方法獲取當前程式集目錄的級的上級目錄:", dir);
console.writeline(info);
//使用path獲取當前應用程式集的執行目錄的上級目錄
dir = path.getfullpath(@"..\..\..\");
info = string.format("path方法獲取當前程式集目錄的上級目錄的上級目錄:", dir);
console.writeline(info);
//在當前程式集目錄中新增指定目錄
dir = path.getfullpath(@"io");
info = string.format("在當前程式集目錄中新增指定目錄:", dir);
console.writeline(info);
console.read();
執行結果:
獲取當前目錄的上級目錄
獲取當前目錄的上級目錄path.getfullpath using system using system.collections.generic using system.linq using system.text using system.io namespace pathtest class...
Python獲取當前目錄和上級目錄
import os print 獲取當前目錄 print os.getcwd print os.path.abspath os.path.dirname file file 為當前檔案,若果在ide中執行此行會報錯,可改為 d path.dirname 但是改為.後,就是獲得當前目錄,接著使用dir...
python獲取當前目錄路徑和上級路徑
在使用python的時候總會遇到路徑切換的使用情況,如想從資料夾test下的test.py呼叫data資料夾下的data.txt檔案 folder data data.txt test test.py一種方法可以在data檔案下加入 init py然後在test.py中import data就可以呼...