I have a simple AIR app where you can drag a folder on to it and it
populates a FileSystemTree.

var files:Array =
e.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array;
myTree.directory = files[0];

Now that that has happened, I'd love to be able to get the tree
structure back out in say an XMLList or anything "savable" really.

I can create my own recursive function to do this, but I'd really
rather not.  Seems to me that if the FileSystemTree can take an
XMLList as its input, it should be able to output one as well.

Any ideas?

Reply via email to