Re: [v8-users] How to read and write local files?

2020-03-30 Thread 'Stefan Wörthmüller' via v8-users
Oh - thats a clear explanation - thanks. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from

Re: [v8-users] How to read and write local files?

2020-03-30 Thread Jakob Kummerow
If it were built into the core V8 library, that would be an ECMAScript spec violation, so it's built into the official samples ;-) On Sun, Mar 29, 2020 at 11:42 PM 'Stefan Wörthmüller' via v8-users < v8-users@googlegroups.com> wrote: > So there is no such functionality built in ? > > Am

Re: [v8-users] How to read and write local files?

2020-03-29 Thread 'Stefan Wörthmüller' via v8-users
So there is no such functionality built in ? Am Sonntag, 29. März 2020 18:26:54 UTC+2 schrieb Jakob Kummerow: > > The "Read" and "Load" functions in the sample shell provide simple > examples of how to interact with files. > > > On Sat, Mar 28, 2020 at 6:50 PM Elangovan S > wrote: > >> You can

Re: [v8-users] How to read and write local files?

2020-03-29 Thread Jakob Kummerow
The "Read" and "Load" functions in the sample shell provide simple examples of how to interact with files. On Sat, Mar 28, 2020 at 6:50 PM Elangovan S wrote: > You can write your own wrapper and expose it to JavaScript. That's the way > we do in our application. You can write class/function

Re: [v8-users] How to read and write local files?

2020-03-28 Thread Elangovan S
You can write your own wrapper and expose it to JavaScript. That's the way we do in our application. You can write class/function and register it with v8 engine. -elangovv On Sat, Mar 28, 2020 at 11:11 PM 'Stefan Wörthmüller' via v8-users < v8-users@googlegroups.com> wrote: > > Hello > > we

[v8-users] How to read and write local files?

2020-03-28 Thread 'Stefan Wörthmüller' via v8-users
Hello we embedded v8 into our Windows Application. Now we would like to read and write files (i.e. json or text files) for any purpose. Is that possible with v8? Can somebody maybe provide a sample? Regards -- -- v8-users mailing list v8-users@googlegroups.com