mkrcs.py :  » Language-Interface » ChinesePython » chinesepython2.1.3-0.4 » Demo » scripts » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Language Interface » ChinesePython 
ChinesePython » chinesepython2.1.3 0.4 » Demo » scripts » mkrcs.py
#! /usr/bin/env python

# A rather specialized script to make sure that a symbolic link named
# RCS exists pointing to a real RCS directory in a parallel tree
# referenced as RCStree in an ancestor directory.
# (I use this because I like my RCS files to reside on a physically
# different machine).

import os

def main():
  rcstree = 'RCStree'
  rcs = 'RCS'
  if os.path.islink(rcs):
    print `rcs`, 'is a symlink to', `os.readlink(rcs)`
    return
  if os.path.isdir(rcs):
    print `rcs`, 'is an ordinary directory'
    return
  if os.path.exists(rcs):
    print `rcs`, 'is a file?!?!'
    return
  #
  p = os.getcwd()
  up = ''
  down = ''
  # Invariants:
  # (1) join(p, down) is the current directory
  # (2) up is the same directory as p
  # Ergo:
  # (3) join(up, down) is the current directory
  #print 'p =', `p`
  while not os.path.isdir(os.path.join(p, rcstree)):
    head, tail = os.path.split(p)
    #print 'head =', `head`, '; tail =', `tail`
    if not tail:
      print 'Sorry, no ancestor dir contains', `rcstree`
      return
    p = head
    up = os.path.join(os.pardir, up)
    down = os.path.join(tail, down)
    #print 'p =', `p`, '; up =', `up`, '; down =', `down`
  there = os.path.join(up, rcstree)
  there = os.path.join(there, down)
  there = os.path.join(there, rcs)
  if os.path.isdir(there):
    print `there`, 'already exists'
  else:
    print 'making', `there`
    makedirs(there)
  print 'making symlink', `rcs`, '->', `there`
  os.symlink(there, rcs)

def makedirs(p):
  if not os.path.isdir(p):
    head, tail = os.path.split(p)
    makedirs(head)
    os.mkdir(p, 0777)

main()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.