Package v7db.files.mongodb

Examples of v7db.files.mongodb.V7GridFS.addFile()


  }

  public void testCopyFile() throws IOException {
    V7GridFS fs = new V7GridFS(getMongo().getDB("test"));
    ObjectId dir = fs.addFolder("test", "folder");
    fs.addFile("test".getBytes(), dir, "test.txt", "text/plain");

    CopyCommand.main(new String[] { "copy", "test", "folder/test.txt", "x",
        "copy.txt" });

    V7File file = fs.getFile("x", "copy.txt");
View Full Code Here


  }

  public void testCopyDirectory() throws IOException {
    V7GridFS fs = new V7GridFS(getMongo().getDB("test"));
    ObjectId dir = fs.addFolder("test", "folder");
    fs.addFile("test".getBytes(), dir, "test.txt", "text/plain");

    CopyCommand
        .main(new String[] { "copy", "test", "folder", "x", "copy" });

    V7File file = fs.getFile("x", "copy", "test.txt");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.