You are viewing limited content. For full access, please sign in.

Question

Question

Creating a Record folder under record folder

asked on August 18, 2015

This is what i am trying to Achieve.We have created a record series folder and under  that we have  created a record folder now when we are trying to create one more record folder under record folder it is creating a normal folder?

below is the code i am trying to use to create Record Series and record folders

 String rootFolder = "\\Record series\\Base";
 int intfolder = Folder.CreateRecordSeries(rootFolder, "PIO", "DEFAULT", EntryNameOption.None, session);
//Above code creates Record Series Folder

 string filepath = "\\Record series\\Base\\PIO ";
 int intfoldernew = Folder.Create(filepath, "DEFAULT", EntryNameOption.None, session);
//Above code creates Record Folder

  string filepath2 = "\\Record series\\Base\\PIO \\PIO";
   int intfoldernew2 = Folder.Create(filepath2, "DEFAULT", EntryNameOption.None, session); 

//Above code doesnot creates Record Folder

can we create a Record folder under a record folder

1 0

Replies

replied on August 18, 2015

Record folders can only exist in the root of a record series.

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.