Module Attributes to Aid in Multi-platform Development : path « File « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » File » path 




import os

print os.linesep      # String used to separate lines in a file
print os.sep        # String used to separate file pathname components
print os.pathsep    # String used to delimit a set of file pathnames
print os.curdir        # String name for current working directory
print os.pardir        # String name for parent (of current working directory)

path = "c:/"
print path
print os.path.isfile(path)
print os.path.isdir(path)
print os.path.split(path)
print os.path.splitext(os.path.basename(path))














12.21.path
12.21.1.Module Attributes to Aid in Multi-platform Development
12.21.2.os.path.abspath(path) returns a string version of the absolute path of the path specified
12.21.3.os.path module provides exists(path), isdir(path), and isfile(path) to check for the existence of files and directories
12.21.4.os.chdir(path) changes the current working directory
12.21.5.Walking the Directory Tree
12.21.6.Searching for Files Based on Extension
12.21.7.Working with Directories
12.21.8.Splitting Pathnames
12.21.9.Listing Directories
12.21.10.Listing Directories with glob
12.21.11.Get full path
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.