I have a custom application, where the goal is to create a list with the app and export this list to the device as an .txt or .csv. With the FileFolder QML Type, I am able to obtain my folder path and create the string to be written.
The issue I am running into is when using a chromebook device (Chrome OS), the file is created but is created as an empty file; the contents are not being passed along. The same application will work properly on any Windows or MacOS system.
example:
FileDialog { //user obtained file path.
id: fileDialog2
folder: shortcuts.desktop //brings user to main path regardless of os.
selectFolder: true
Item {
FileFolder {
id: fileFolder3
}
}
fileFolder3.writeFile("testing.csv", "testing, 2") //string is set up as comma delimited.
Any ideas or workarounds, or is this just an OS limitation issue?
-Kyle