Access to non-sandboxed disk in Chrome Native Client -


chrome native client provides file io api access sandboxed local disk. possible access non-sandboxed disk, , if yes, how?

you can launch chrome --no-sandbox command-line flag , use following environment variable:

set nacl_dangerous_enable_file_access=1 

to enable direct file access. see blog post details.

this mode created debugging purposes, never enabled default.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -