configurationengine/source/plugins/common/integration-test/testdata/commandml_test_project/tools/makedir.py
author m2lahtel
Wed, 08 Sep 2010 12:20:56 +0300
changeset 4 0951727b8815
permissions -rw-r--r--
Updated to 1.2.13 release
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     1
#
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     2
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     3
# All rights reserved.
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     4
# This component and the accompanying materials are made available
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     5
# under the terms of "Eclipse Public License v1.0"
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     6
# which accompanies this distribution, and is available
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     8
#
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
     9
# Initial Contributors:
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    10
# Nokia Corporation - initial contribution.
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    11
#
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    12
# Contributors:
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    13
#
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    14
# Description: 
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    15
#
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    16
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    17
import sys, os
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    18
dir = sys.argv[1]
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    19
if not os.path.exists(dir):
0951727b8815 Updated to 1.2.13 release
m2lahtel
parents:
diff changeset
    20
    os.makedirs(dir)