mirror of https://github.com/lwvmobile/dsd-fme.git
Allow the mbe file move to work in windows based systems.
This commit is contained in:
parent
4e338dede9
commit
f2767707ef
|
|
@ -213,7 +213,11 @@ closeMbeOutFile (dsd_opts * opts, dsd_state * state)
|
|||
strftime (datestr, 31, "%Y-%m-%d-%H%M%S", &timep);
|
||||
sprintf (newfilename, "nac%X-%s-tg%i%s", state->nac, datestr, talkgroup, ext);
|
||||
sprintf (new_path, "%s%s", opts->mbe_out_dir, newfilename);
|
||||
#ifdef _WIN32
|
||||
sprintf (shell, "move %s %s", opts->mbe_out_path, new_path);
|
||||
#else
|
||||
sprintf (shell, "mv %s %s", opts->mbe_out_path, new_path);
|
||||
#endif
|
||||
result = system (shell);
|
||||
|
||||
state->tgcount = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue