當前位置: 首頁>>代碼示例>>Python>>正文


Python Session.addFiles方法代碼示例

本文整理匯總了Python中Session.Session.addFiles方法的典型用法代碼示例。如果您正苦於以下問題:Python Session.addFiles方法的具體用法?Python Session.addFiles怎麽用?Python Session.addFiles使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Session.Session的用法示例。


在下文中一共展示了Session.addFiles方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: folderAdd

# 需要導入模塊: from Session import Session [as 別名]
# 或者: from Session.Session import addFiles [as 別名]
        def folderAdd(self, folderObject):
                """
                        each time one adds a new FileWalker object it triggers 
                        a new session that is stored using the unique FileWalker 
                        name
                """
                if isinstance(folderObject, FileWalker):
                        
                        # clone list of classes and create new
                        thisSession = Session(folderObject.name, folderObject.path, self.classes)

                        # iterate over all files
                        thisSession.addFiles(folderObject)
                        
                        # append the completed session to the list
                        self.sessions.append(thisSession)

                        print "add Folder: %s" % folderObject.name

                else:
                        return NotImplemented
                return True
開發者ID:pombreda,項目名稱:PyFileClassParser,代碼行數:24,代碼來源:PyFileClassParser.py

示例2: TestSequence

# 需要導入模塊: from Session import Session [as 別名]
# 或者: from Session.Session import addFiles [as 別名]
class TestSequence(unittest.TestCase):

        def setUp(self):
                class1 = FileClass('documents', ['.pdf', '.doc'])
                class2 = FileClass('C-code', ['.c', '.h', '.py'])
                self.session = Session('testSession', './', [class1, class2])
                pass

        def tearDown(self):
                pass

        def test_constructor(self):
                self.assertEqual(2, len(self.session.classes))
                print self.session

        def test_addingFiles(self):
                self.folder = FileWalker('AimValley TITAN', '/Users/bastian/Jobb/Transmode/R21-EDU/Software/AIMVALLEY-Titan-R1_03_00-LD3.0-20121119/av-Titan-r1_03_00-ld3.0-121119')
                self.assertTrue(self.session.addFiles(self.folder))

                print self.session
開發者ID:pombreda,項目名稱:PyFileClassParser,代碼行數:22,代碼來源:Session-ut.py


注:本文中的Session.Session.addFiles方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。