Foxit PDF SDK
FSDK.PortfolioFolderNode Class Reference

Public Member Functions

 AddFile (file_path)
 Add a file (specified by file path) to be a sub node. More...
 
 AddFile (file_stream, file_name)
 Add a file (specified with FSDK.StreamCallback) to be a sub node. More...
 
 AddPDFDoc (pdf_doc, file_name)
 Add an loaded PDF document to be a sub node. More...
 
 AddSubFolder (folder_name)
 Add a new sub folder. More...
 
 GetCreationDateTime ()
 Get the creation date time. More...
 
 GetDescription ()
 Get description. More...
 
 GetModifiedDateTime ()
 Get the last modified date time. More...
 
 GetName ()
 Get name of current folder node. More...
 
 GetSortedSubNodes ()
 Get sub nodes array, which has been sorted according to sorting order and specified field name defined in class FSDK.Portfolio. More...
 
 IsRoot ()
 Check if current folder node represents root node. More...
 
 RemoveSubNode (sub_node)
 Remove a sub node. More...
 
 SetDescription (description)
 Set description. More...
 

Detailed Description

Portfolio folder node is used as a folder, which can contain file and other folder as sub nodes.
Class FSDK.PortfolioFolderNode is derived from class FSDK.PortfolioNode. It offers function to access a folder node: add file/folder to folder node, remove sub node from folder node, get all the sub nodes in sorted order, and get/set some properties of folder node.

Member Function Documentation

◆ AddFile() [1/2]

FSDK.PortfolioFolderNode.AddFile ( file_path  )

Add a file (specified by file path) to be a sub node.

Foxit PDF SDK will retrieve some properties (such as file name, modified date and etc.) from input file path and set them to the file specification object of returned file node. User can also update properties by functions in class FSDK.FileSpec for the returned file node.

Parameters
[in]file_pathA full path of an existing local file.
Returns
Newly added file node object.

◆ AddFile() [2/2]

FSDK.PortfolioFolderNode.AddFile ( file_stream  ,
file_name   
)

Add a file (specified with FSDK.StreamCallback) to be a sub node.

Foxit PDF SDK CANNOT retrieve any property from input stream callback. So user should update properties by functions in class FSDK.FileSpec for returned file node.

Parameters
[in]file_streamA FSDK.StreamCallback object which is implemented by user to read the file content.
[in]file_nameFile name for the file specified by stream callback. This name will be used in file specification which is related with the returned file node object.
Returns
Newly added file node object.

◆ AddPDFDoc()

FSDK.PortfolioFolderNode.AddPDFDoc ( pdf_doc  ,
file_name   
)

Add an loaded PDF document to be a sub node.

Foxit PDF SDK will try to retrieve properties (such as creation date and modified date) from input PDF document's metadata and set them to the file specification object of returned file node. User can also update properties by functions in class FSDK.FileSpec for the returned file node.

Parameters
[in]pdf_docA valid PDF document object which has been loaded successsfully.
[in]file_nameFile name for the file specified by stream callback. This name will be used in file specification which is related with the returned file node object.
Returns
Newly added file node object.

◆ AddSubFolder()

FSDK.PortfolioFolderNode.AddSubFolder ( folder_name  )

Add a new sub folder.

Parameters
[in]folder_nameFolder name for the new sub folder.
Returns
Newly added folder node object.

◆ GetCreationDateTime()

FSDK.PortfolioFolderNode.GetCreationDateTime ( )

Get the creation date time.

Returns
Creation date time.

◆ GetDescription()

FSDK.PortfolioFolderNode.GetDescription ( )

Get description.

Returns
Description string.

◆ GetModifiedDateTime()

FSDK.PortfolioFolderNode.GetModifiedDateTime ( )

Get the last modified date time.

If structure of sub nodes is changed (such as add file/folder, remove sub node), Foxit PDF SDK will update last modified date time of current folder node automatically.

Returns
Last modified date time.

◆ GetName()

FSDK.PortfolioFolderNode.GetName ( )

Get name of current folder node.

Returns
Name of current folder node. If current folder node is the root node, usually it does not have a name and an empty string will be return for this case.

◆ GetSortedSubNodes()

FSDK.PortfolioFolderNode.GetSortedSubNodes ( )

Get sub nodes array, which has been sorted according to sorting order and specified field name defined in class FSDK.Portfolio.

If the type of values (which are to be compared) is string, Foxit PDF SDK will compare these string values without taking care of whether a character is a capital or a small letter.

Returns
An array of sorted sub nodes.

◆ IsRoot()

FSDK.PortfolioFolderNode.IsRoot ( )

Check if current folder node represents root node.

Returns
true means current folder node is the root node, while false means current folder node is not the root node.

◆ RemoveSubNode()

FSDK.PortfolioFolderNode.RemoveSubNode ( sub_node  )

Remove a sub node.

Parameters
[in]sub_nodeA node object which represents a sub node of current node to be removed.
Returns
None.

◆ SetDescription()

FSDK.PortfolioFolderNode.SetDescription ( description  )

Set description.

Parameters
[in]descriptionDescription string to be set. This can be an empty string.
Returns
None.