Use javascript to count the number of files in directory

cancel
Showing results for 
Search instead for 
Did you mean: 
franksant13
Member II

Use javascript to count the number of files in directory

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
mehe
Senior Member II

Re: Use javascript to count the number of files in directory

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...