initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / applications / test / fileName / fileNameTest.C
blob99642333c6117d786b85832ed8d403fe62f6e992
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Application
26     fileName
28 Description
31 \*---------------------------------------------------------------------------*/
33 #include "fileName.H"
34 #include "IOstreams.H"
36 using namespace Foam;
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 // Main program:
41 int main()
43     wordList wrdList(5);
44     wrdList[0] = "hello";
45     wrdList[1] = "hello1";
46     wrdList[2] = "hello2";
47     wrdList[3] = "hello3";
48     wrdList[4] = "hello4.hmm";
50     fileName pathName(wrdList);
52     Info<< "pathName = " << pathName << endl;
53     Info<< "pathName.name() = " << pathName.name() << endl;
54     Info<< "pathName.path() = " << pathName.path() << endl;
55     Info<< "pathName.ext() = " << pathName.ext() << endl;
57     Info<< "pathName.components() = " << pathName.components() << endl;
58     Info<< "pathName.component(2) = " << pathName.component(2) << endl;
60     Info<< "end" << endl;
62     return 0;
66 // ************************************************************************* //