Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Reg:Directory

Former Member
0 Kudos

Hi guys,

Can anyone please let me know how to create a directory in an ABAP program???

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Refer

2 REPLIES 2

Former Member
0 Kudos

Create a Directory in the user local hardisk

When using WS_DOWNLOAD, if the directory exists on the PC then the download is successful. However, if the directory does not exist then the download fails. Therefore, you can use GUI_CREATE_DIRECTORY to create the directory at the begining of your ABAP programs. If the directory or folder already exists on the personal computer, the command will just be ignored.

Test this code

REPORT ZGUI_DIR.

call function 'GUI_CREATE_DIRECTORY'

exporting

dirname = 'C:\TEST'

EXCEPTIONS

FAILED = 1

OTHERS = 2.

if sy-subrc <> 0.

WRITE: / 'Error Code ',SY-SUBRC.

endif.

Regards,

Pavan P.

Former Member
0 Kudos

Refer