X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FSplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx;h=d6ceea02b4446a3ffcaa3a9d1bb25de434ae68f2;hb=4552d4ee18f3234af4e037e77abf0622c2702004;hp=992b53c0c3158967f88a83afd859e2c260f4cadd;hpb=58c32763102f7533e55c8673bdff8b221ea28aa8;p=gdcm.git diff --git a/Example/SplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx b/Example/SplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx index 992b53c0..d6ceea02 100755 --- a/Example/SplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx +++ b/Example/SplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: SplitIntoXCoherentDirectoriesIgnoreSerieUID.cxx,v $ Language: C++ - Date: $Date: 2011/03/29 07:35:58 $ - Version: $Revision: 1.3 $ + Date: $Date: 2011/04/20 14:06:50 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -176,7 +176,7 @@ int main(int argc, char *argv[]) if ( ! GDCM_NAME_SPACE::DirList::IsDirectory(dirNameout) ) // dirout not found { std::string strDirNameout(dirNameout); // to please gcc 4 - systemCommand = "mkdir " +strDirNameout; // create it! + systemCommand = "mkdir \"" +strDirNameout + "\""; // create it! if (verbose) std::cout << systemCommand << std::endl; system (systemCommand.c_str()); @@ -256,7 +256,7 @@ int main(int argc, char *argv[]) std::cout << "[" << currentSerieWriteDir<< "]" << std::endl; // if ( ! GDCM_NAME_SPACE::DirList::IsDirectory(currentSerieWriteDir) ) { - systemCommand = "mkdir " + currentSerieWriteDir; + systemCommand = "mkdir \"" + currentSerieWriteDir + "\""; system( systemCommand.c_str()); if (verbose) std::cout << "1 " <GetFileName() << std::endl; lastFilename = GDCM_NAME_SPACE::Util::GetName( fileName ); filenameout = xCoherentWriteDir + GDCM_NAME_SPACE::GDCM_FILESEPARATOR+ lastFilename; - //systemCommand = "cp " + fileName + " " + filenameout; + //systemCommand = "cp \"" + fileName + " \"" + filenameout; //system( systemCommand.c_str()); fh->SetWriteTypeToDcmExplVR();