Changeset 922 for trunk/jahplayer/utilities.py
- Timestamp:
- 11/18/07 15:12:57 (3 years ago)
- Files:
-
- 1 modified
-
trunk/jahplayer/utilities.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jahplayer/utilities.py
r911 r922 60 60 if not os.access( path, os.F_OK ): 61 61 os.mkdir( path, 0777 ) 62 63 reel_path = os.path.join( path, filename ).replace( '\\', '/' ) 64 if not os.access( reel_path, os.F_OK ): 65 f = open( reel_path, 'w' ) 66 f.close( ) 62 67 63 return os.path.join( path, filename ).replace( '\\', '/' )68 return reel_path 64 69 65 70 def get_files( path, pattern = None, regexp = None, crawl = True ):
