Create And Move Files And Directories

Demonstrate creating simple paths and moving them withing the filesystem and to other filesystems

Move Between File Systems

Move a file from one filesystem to another
    import scalax.file._
    import ramfs.RamFileSystem

    val fs = RamFileSystem()
    val ramPath = fs("/","tmp")
    val path = Path("file")  // default filesystem

    path.moveTo(ramPath)