File.copyTo(desktop, true) wiped my desktop
This is probably karma. I was making a little prank program for April fools for our office and it went horribly wrong. While testing some file operations, I was copying a file from the user directory to the desktop. The file did not already exist on the desktop, but I set the overwrite argument to true. Like so
var userDirectory = File.userDirectory;
var desktopDirectory = File.desktopDirectory;
var fileToCopy = userDirectory.resolvePath('file.ext');
fileToCopy.copyTo(desktopDirectory, true);
So I run a Test->Publish so it's running in ADL - I go to look at my desktop and everything is gone. Completely gone. Yikes! Is this a bug? Is there anyway to recover my desktop? I'm on a Macbook Pro running OSX 10.8.3, Flash Pro CS6 with publish target AIR 3.4 for Desktop
