This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import QuartzCore | |
enum CustomSegueAnimation { | |
case SwipeFromleft | |
} | |
// MARK: Segue class | |
class CustomSegue: UIStoryboardSegue { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
k=[] | |
l=[] | |
lis=[] | |
rootDir = '.' | |
for dirName, subdirList, fileList in os.walk(rootDir, topdown=False): | |
# print("dir is " , dirName) | |
lis=lis+[dirName] | |
for fname in fileList: | |
# print("file is " , fname) |
NewerOlder