[ABAP] Pfad + Dateinamen aufsplitten

DATA: lv_path TYPE string.
DATA: lv_file TYPE string.
  
CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
  EXPORTING
    full_name     = 'c:\Temp\Test.txt'
  IMPORTING
    file_path     = lv_path
    stripped_name = lv_file
  EXCEPTIONS
    x_error       = 1
    OTHERS        = 2.