Dizin ayıracı tespit etme
Unix sistemlerde dosya ayıracı `/` iken windows sistemlerde ayıraç `` `tır.
Ayıracı tespit etmek için aşağıdaki kodu kullanabilirsiniz
data: lv_seperator type c.
data: platformID type i value 0.
data: Front_End type ref to cl_gui_frontend_services.
create object Front_End.
call method Front_End->get_platform
receiving platform = platformID
exceptions cntl_error = 1
error_no_gui = 2
not_supported_by_gui = 3.
case platformID.
when Front_End->PLATFORM_WINDOWS95
or Front_End->PLATFORM_WINDOWS98
or Front_End->PLATFORM_NT351
or Front_End->PLATFORM_NT40
or Front_End->PLATFORM_NT50
or Front_End->PLATFORM_MAC
or Front_End->PLATFORM_OS2
or 14. "XP
lv_seperator = ``.
when others.
lv_seperator = `/`.
endcase.