fs_shim 0.1.0 copy "fs_shim: ^0.1.0" to clipboard
fs_shim: ^0.1.0 copied to clipboard

outdatedDart 1 only

A portable file system implementation working on io, browser and memory (through idb_shim)

_fs_shim #

A portable file system library to allow working on io and browser (though idb_shim) and memory (through idb_shim), and soon google storage (through storage api), google drive (through google drive api)

Build Status

Usage #

In memory #

A simple usage example:

import 'package:tekartik_fs_shim/fs_memory.dart';

main() async {
  FileSystem fs = newMemoryFileSystem();
  Directory dir = fs.newDirectory("dummy");
  await dir.create();
}

Using IO API #

Replace

import 'dart:io';

with

import 'package:fs_shim/fs_io.dart';

Then a reduced set of the IO API can be used, same source code that might requires some cleanup if you import from existing code

Features and bugs #

6
likes
0
pub points
85%
popularity

Publisher

verified publishertekartik.com

A portable file system implementation working on io, browser and memory (through idb_shim)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

idb_shim, path

More

Packages that depend on fs_shim