views:

70

answers:

2

How to get folder size in Adobe Air?

+1  A: 

Recursive folder listings and contents processing
http://cookbooks.adobe.com/post_Recursive_folder_listings_and_contents_processing-9410.html

...has sufficient sample code in it to get you started.

Robert Harvey
+1  A: 

Should be fairly simple using File.size. Just in case is confusing, folders in AIR are represented using the File class, which extends FileReference, thus the link to the FileReference documentation.

HTH,

J

Zárate