cancel
Showing results for 
Search instead for 
Did you mean: 

Use javascript to count the number of files in directory

franksant13
Champ in-the-making
Champ in-the-making

Hello everybody i need some help. I have to use javascript to count the number of files in a directory and have that value in a variable. Does anyone knows how to do that. 

Thanks in advance. 

1 REPLY 1

mehe
Elite Collaborator
Elite Collaborator

If you have your directory in a variable like "node", you get the number of children of this node via node.children.length
see ScriptNode API | Alfresco Documentation 

or use childFileFolders | Alfresco Documentation 

node.childFileFolders(true, false).length

there you can choose to get all files, directories or files and directories...