c-ipfs/include/ipfs/importer/importer.h

27 lines
903 B
C
Raw Normal View History

2016-12-12 11:27:06 +00:00
#ifndef __IPFS_IMPORTER_IMPORTER_H__
#define __IPFS_IMPORTER_IMPORTER_H__
2016-12-19 14:03:28 +00:00
#include "ipfs/merkledag/node.h"
#include "ipfs/repo/fsrepo/fs_repo.h"
2016-12-12 11:27:06 +00:00
/**
* Creates a node based on an incoming file
* @param root the root directory
* @param file_name the file to import (could contain a directory)
2016-12-12 11:27:06 +00:00
* @param node the root node (could have links to others)
* @param fs_repo the repo to use
* @param bytes_written the number of bytes written to disk
* @param recursive true(1) if you want to include files and directories
2016-12-12 11:27:06 +00:00
* @returns true(1) on success
*/
int ipfs_import_file(const char* root, const char* fileName, struct Node** node, struct FSRepo* fs_repo, size_t* bytes_written, int recursive);
2016-12-12 11:27:06 +00:00
/**
* called from the command line
* @param argc the number of arguments
* @param argv the arguments
*/
2016-12-28 02:39:58 +00:00
int ipfs_import_files(int argc, char** argv);
2016-12-12 11:27:06 +00:00
#endif /* INCLUDE_IPFS_IMPORTER_IMPORTER_H_ */