SV
unread,Aug 30, 2011, 7:29:45 AM8/30/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium HTML5
Hi,
Am using the following code and trying in chrome
if (window.webkitRequestFileSystem) {
mysystem = window.webkitRequestFileSystem;
} else {
mysystem = window.RequestFileSystem;
}
mysystem(window.PERSISTENT, 1024 * 1024, onInitFs, errorHandler);
But my function onInitFs() does not get called. Please let me know how
to use this function to read local files.
Thanks,
SV