2004-08-06 11:42:41 +00:00
|
|
|
// dir_hier_move src_dir dst_dir fanout
|
|
|
|
//
|
|
|
|
// move files from src_dir (flat) into dst_dir (hierarchical)
|
|
|
|
// with the given fanout
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
|
|
|
#include <stdlib.h>
|
2004-08-12 15:06:35 +00:00
|
|
|
#include <errno.h>
|
2004-08-06 11:42:41 +00:00
|
|
|
|
|
|
|
#include "filesys.h"
|
|
|
|
#include "util.h"
|
2005-01-08 07:44:22 +00:00
|
|
|
#include "sched_util.h"
|
2004-08-06 11:42:41 +00:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
char* src_dir, *dst_dir;
|
|
|
|
int fanout=0;
|
|
|
|
std::string filename;
|
|
|
|
char dst_path[256], src_path[256];
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (argc != 4) exit(1);
|
|
|
|
src_dir = argv[1];
|
|
|
|
dst_dir = argv[2];
|
|
|
|
fanout = atoi(argv[3]);
|
|
|
|
if (!fanout) exit(1);
|
|
|
|
|
|
|
|
DirScanner scanner(src_dir);
|
|
|
|
while (scanner.scan(filename)) {
|
2005-01-02 07:44:40 +00:00
|
|
|
retval = dir_hier_path(filename.c_str(), dst_dir, fanout, true, dst_path, true);
|
2004-08-06 11:42:41 +00:00
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "dir_hier_path: %d\n", retval);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
sprintf(src_path, "%s/%s", src_dir, filename.c_str());
|
|
|
|
retval = rename(src_path, dst_path);
|
|
|
|
if (retval) {
|
2004-08-12 15:06:35 +00:00
|
|
|
fprintf(stderr, "rename: %d, errno is %d\n", retval, errno);
|
2004-08-06 11:42:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2004-08-05 11:35:09 +00:00
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_d6492ba662 = "$Id$";
|