mirror of https://github.com/BOINC/boinc.git
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
// Berkeley Open Infrastructure for Network Computing
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2005 University of California
|
|
//
|
|
// This is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation;
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
//
|
|
// This software is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// To view the GNU Lesser General Public License visit
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
// or write to the Free Software Foundation, Inc.,
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
// 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>
|
|
#include <errno.h>
|
|
|
|
#include "filesys.h"
|
|
#include "util.h"
|
|
#include "sched_util.h"
|
|
|
|
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)) {
|
|
retval = dir_hier_path(filename.c_str(), dst_dir, fanout, true, dst_path, true);
|
|
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) {
|
|
fprintf(stderr, "rename: %d, errno is %d\n", retval, errno);
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
const char *BOINC_RCSID_d6492ba662 = "$Id$";
|