filestream file = new filestream(".//" + "1.txt", filemode.create);
string str=@"sfslflsflsaf;saf/r sfasfsfsfasf/n sfsfsafsafasfasfjsfjsl
sadfsfsfsf/r fsfasfasf/ /tsfsa sfs/n ";
byte bt=system.text.encoding.ascii.getbytes(str.tochararray());
file.write(bt, 0, bt.length);
file.close();
這樣其實在當前資料夾下建立乙個文字檔案,1.txt ,然後就是給其新增內容了。f:project/wap2ptest/bin/debug
獲取當前檔案路徑
getcurrentdirectory只是返回當前程序的當前目錄,而並不是程序的映象檔案 exe 所在的目錄 getcurrentdirectory 適用於xp等系統,在wince上不能使用 getmodulefilename 適用於wince2.0以後 使用方法 下面的一段 主要是獲得當前程式的執...
獲取當前檔案路徑。
之前搞模組載入,苦於無法獲取當前檔案路徑,檔名 後來沒通過獲取當前檔案路徑,檔名,給搞定了。結果今天把這個問題也解決了,做個記錄 file zhus err.js varcursrc newfunction catch e console.log cursrc zhus err 以上編碼,只適用於f...
獲取當前檔案的路徑
一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...