Smartsheet.Api.Internal.FolderResourcesImpl.CopyFolder C# (CSharp) Method

CopyFolder() public method

Creates a copy of the specified Folder.

It mirrors To the following Smartsheet REST API method:
POST /folders/{folderId}/copy

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public CopyFolder ( long folderId, ContainerDestination destination, IEnumerable include, IEnumerable skipRemap ) : Folder
folderId long the folder Id
destination ContainerDestination the destination to copy to
include IEnumerable the elements to copy. Note: Cell history will not be copied, regardless of which include parameter values are specified.
skipRemap IEnumerable the references to NOT re-map for the newly created folder /// /// If “cellLinks” is specified in the skipRemap parameter value, the cell links within the newly created folder will continue to point to the original source sheets. /// If “reports” is specified in the skipRemap parameter value, the reports within the newly created folder will continue to point to the original source sheets. /// ///
return Folder
        public virtual Folder CopyFolder(long folderId, ContainerDestination destination, IEnumerable<FolderCopyInclusion> include, IEnumerable<FolderRemapExclusion> skipRemap)
        {
            IDictionary<string, string> parameters = new Dictionary<string, string>();
            if (include != null)
            {
                parameters.Add("include", QueryUtil.GenerateCommaSeparatedList(include));
            }
            if (skipRemap != null)
            {
                parameters.Add("skipRemap", QueryUtil.GenerateCommaSeparatedList(skipRemap));
            }
            return this.CreateResource<RequestResult<Folder>, ContainerDestination>(QueryUtil.GenerateUrl("folders/" + folderId + "/copy", parameters), destination).Result;
        }