__author__ = 'mare' from os.path import * print( abspath('tmp') ) #/Users/mare/PycharmProjects/OS_system/tmp print( basename('C:/Python32/tmp') ) print( basename('C:/Python32/tmp/test.txt') ) #tmp #test.txt print( commonprefix(['c:/python32/lib', 'c:/python32/Tools', 'c:/python32'])) #c:/python32 print( commonprefix(['c:/python26/lib', 'c:/python25/Tools'])) #c:/python2 print( dirname('C:/Python32/tmp')) print( dirname('C:/Python32/tmp/test.txt')) #C:/Python32 #C:/Python32/tmp print( exists('/Users/mare/PycharmProjects/OS_system/')) print( exists('/Users/mare/')) print( exists('/Users/mare/AAAA/')) #True #True #False print( expanduser('~/test')) #/Users/mare/test print( expanduser('~someone/test')) #~someone/test print( expandvars('$HOME/temp')) #/Users/mare/temp print( expandvars('$SYSTEMROOT/var')) #$SYSTEMROOT/var -> mac is not supported print(getatime('/Users/mare')) #1394212008.0 -> latest time to access the path print(getmtime('/Users/mare')) #1389968107.0 -> latest time to modify the path print(getctime('/Users/mare')) #1389968107.0 -> latest time to create the folder print( isabs('/Users/mare') ) #absolute path is true another is false #True print( isabs('../mare') ) #False print( isfile('/Users/mare/PycharmProjects/OS_system/main.fy')) print( isfile('/Users/mare/PycharmProjects/OS_system/main.py')) #False #True print( isdir('/Users/mare/PycharmProjects/OS_system/main.py') ) print( isdir('/Users/mare/PycharmProjects/OS_system/')) #False #True print( join('/python32', 'Script', 'test.py')) #/python32/Script/test.py print( split('/python32/Script/test.py')) #('/python32/Script', 'test.py') print( splitext('/python32/Script/test.py') ) #('/python32/Script/test', '.py') import glob print( glob.glob('*')) #['main.py']
3/07/2014
Python Study, os.path functions
Subscribe to:
Post Comments (Atom)
-
dp parameter is about resolution of voting space. dp is larger, voting resolution is small compare to image size. so dp is larger, circle...
-
line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours example source code!!. ... //http://study....
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
//Singular value decomposition : Mat w, u, v; SVDecomp(data, w, u, v); // A = U W V^T //The flags cause U and V to be returned transpose...
-
In past, I wrote an articel about YUV 444, 422, 411 introduction and yuv rgb converting example code. refer to this page -> http://feel...
-
The latent SVM tells the learning method used in this paper -> "Discriminatively trained deformable part models". The authors s...
-
EMD(earth mover distance) method is very good method to compare image similarity. But processing time is slow. For using the EMD compare, ...
-
Optical Flow sample source code using OpenCV. It programed based on http://feelmare.blogspot.kr/2012/10/make-2-frame-having-time-interv...
-
Very simple way~ string s; CString cs(s.c_str()); //
-
Mounting Remote Data for GPU Training This guide explains how to access data from Computer A (data server) on Computer B (GPU machine) for...
No comments:
Post a Comment