Qt 6.11 is out! See what's new in the release
blog
Is it possible to stream local file using QML ?
QML and Qt Quick
5
Posts
3
Posters
3.3k
Views
1
Watching
-
Is it possible to stream local file using QML ?
I don't wanna use C++. Is it possible in QML or JS ? -
Thanks for reply..
I'm talking about to stream offline storage file... like C++ <fstream>... I wanna develop a NOTES application for symbian which can store notes with .txt file extension. Is it possible in QML ? -
QML/javascript has no file i/o, other than the sql offline storage API.
You probably will have to use C++.If the .txt isn't critical, try the SQL Offline Storage API in http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeglobalobject.html
-
Thank u Damian...
It's almost helpful.