Application Development and Automation 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: 
Read only

create folder

Former Member
0 Likes
996

Hi all,

I need to create folder on windows XP with function throw R/3.

Is there any function that can do it?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
798

You can try with following Class : CL_GUI_FRONTEND_SERVICES,

May be usefull

6 REPLIES 6
Read only

Former Member
0 Likes
798

Hi Celtic,

You can try with GUI_DOWNLOAD buy providing the Path and put you file in there (in a Folder). Hope it might workout.

Thanks,

Prashanth

Read only

0 Likes
798

Yes below function module can be used,

Just make One small Change .

USE C:/TEST (Forward slash).

Donot USe 'C:\TEST' (Back ward slash )

  • the Below function Module uses the same class which i mentioned Early .

Call function 'GUI_CREATE_DIRECTORY'

exporting

dirname = 'C:/TEST'

EXCEPTIONS

FAILED = 1

OTHERS = 2.

Thanks

Badari

Read only

Former Member
0 Likes
798

hi,

i don't know but check it out in se37 function module by pressing createfolder*

Read only

Former Member
0 Likes
798

Hi,

I do not know exactly about 'Function throw R/3'

But you can use the following FM for creating directories in windows.

call function 'GUI_CREATE_DIRECTORY'

exporting

dirname = 'C:\TEST'

EXCEPTIONS

FAILED = 1

OTHERS = 2.

Read only

Former Member
0 Likes
799

You can try with following Class : CL_GUI_FRONTEND_SERVICES,

May be usefull

Read only

Former Member
0 Likes
798

Thank you all!!!

CL_GUI_FRONTEND_SERVICES is the best cause i can check for exist folder and more.

Thank you!