Need to create folder

On 04/05/2018 at 03:42, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   R19 
Platform:   Windows  ;   
Language(s) :     C++  ;

---------
My requirement is to create a folder and store some images there. So Is there any SDK API (c++) to create and access the folder. If there is no API, then please tell me the way to create and access the folder. I have created a command plugin where I need to create a folder.

On 04/05/2018 at 03:48, xxxxxxxx wrote:

Have a look in the documentation at GeFile.
There is a GeFCreateDir function available, amongst others.

Depending your need you might want to use BrowseFiles to browse the files inside the folder.
Finally, have a look at the BaseFile, or HyperFile (depending your need).

On 04/05/2018 at 07:32, xxxxxxxx wrote:

Maybe you also want to check out the manuals on Files.

On 04/05/2018 at 07:45, xxxxxxxx wrote:

Thanks every one.