Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Korakot Chaovavanich http://korakot.stumbleupon.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

common command line equivalent in python

>>> import os

>>> os.getcwd() # get current working directory
'C:\\lang\\python23'

>>> os.chdir('C:/') # change directory
>>> os.chdir('lang') # again

>>> os.listdir('.') # list
['dotnet', 'try', 'editplus', 'python23', 'leo', 'mingw', 'perl', 'gtk', 'ironpy', 'java142']
>>>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS