Use the File openWrite() method to create a new IOSink for a file, to write to the file a little at a time. To append to the file, set the mode argument to FileMode.APPEND (it defaults to FileMode.WRITE).
import 'dart:io'; main() { var file = new File('file.txt'); var sink = file.openWrite(); sink.write('FILE ACCESSED ${new DateTime.now()}\n'); // Close the IOSink to free system resources. sink.close(); }
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did129451