有没有办法将一个事件监听器添加到copyTo()函数中,所以我 动作完成后可以运行代码吗?
下面是我的代码,最后一行是我认为可行的,但事实并非如此。
var sourceDir:File = File.applicationDirectory.resolvePath("userSettings.xml");
var resultDir:File = File.applicationStorageDirectory.resolvePath("userSettings.xml");
sourceDir.copyTo(resultDir, true);
// Is this possible?
sourceDir.addEventListener(Event.COMPLETE, fileCopied);