Tagged 'full dir' https://www.scriptspot.com/3ds-max/tutorials/tags/full-dir en Get list of all subfolders https://www.scriptspot.com/3ds-max/tutorials/get-list-of-all-subfolders <p>-- How to get list of all sub folders in special path --</p> <p>function GetAllSubDirs_fn MyDirectory =<br /> (<br /> temp = #();<br /> s = 1;<br /> folders = getDirectories (MyDirectory + "/*");<br /> t = folders.count;<br /> while s &lt; t do<br /> (<br /> for i = s to t do (temp = getDirectories (folders[i]+"*");<br /> for j = 1 to temp.count do folders[folders.count+1] = temp[j] );<br /> s = t;<br /> t = folders.count;<br /> )<br /> sort folders<br /> return folders;<br /> )<br /> -- call the function whit a folder path --</p> <p>GetAllSubDirs_fn("D:")</p> https://www.scriptspot.com/3ds-max/tutorials/get-list-of-all-subfolders#comments Tutorials full dir get subfolders getdir getdirectories sub folder Sun, 10 Mar 2013 16:06:13 +0000 Nevil 9912 at https://www.scriptspot.com