多个try / except在单个函数中不起作用

时间:2011-02-23 06:46:05

标签: python

 def creating_folder_for_csv_files(cwd):
     try:
         os.makedirs(cwd+'\\migration_data\\trade')
     except os.error, e:
         print "Could not create the destination folder for CSV files"
    # end of first try/except block

     try:
         os.makedirs(cwd+'\\migration_data\\voucher')
     except os.error, e:
         print "Could not create the destination folder for CSV files"

在我的代码中,第一个try / except块有效但第二个没有。有什么问题?

1 个答案:

答案 0 :(得分:0)

voucher可能已经存在。