獲取檔案的邏輯路徑

2021-05-22 00:04:11 字數 746 閱讀 4033

用tcode  file 可以檢視邏輯路徑  這個tcode 是 client 非依存

data: flag,

format(3),

fname(60).

write sy-opsys.

call function 'file_get_name'

exporting

logical_filename        = 'mytemp'

operating_system        = sy-opsys

parameter_1             = '01'

importing

emergency_flag          = flag

file_format             = format

file_name               = fname

exceptions

file_not_found          = 1

others                  = 2.

if sy-subrc = 0.

write: /  'flag      :', flag,

/ 'format    :', format,

/ 'phys. name:', fname.

endif.

hp-ux

flag :

format : bin

phys. name: /tmp/test01

檔案獲取路徑

獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.currentdirectory 獲取應用程...

獲取檔案路徑

相對路徑和絕對路徑的轉換 unit xpath inte ce uses shlwapi,windows,sysutils 取絕對路徑的函式。需要引用 shlwapi.pas 參考路徑 相對路徑 s getabsolutepath c windows system32 demo.txt s 將得到 ...

c 獲取檔案路徑

一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...