Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to use the synchroneous JS FileSystem API, therefore, this code has to be put to a webworker. the incoming data for the webworker are taken from a dragndrop event (dataTransfer.items) in order to be able to use chromes newest capabilitiy to upload folders. sadly, every try is canceled by chrome with a "Uncaught Error: DATA_CLONE_ERR: DOM Exception 25".

basically, its like this:

  var files=e.dataTransfer.items; [copying the DataTransferItemList]
  var worker=new Worker(...)
  worker.postMessage(files);

this does not work. any idea, why? a similar (but not 100% identical) example can be found here: http://www.html5rocks.com/en/tutorials/file/filesystem-sync/ - this seems to work. its not a DataTransferItemList, its a FileList there - cant this type of List be serialized?

Thanks, Christoph

share|improve this question
See stackoverflow.com/questions/7506635/… – pd40 Dec 27 '12 at 11:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.