Browse Source

生成ICon文件

zqbo 5 years ago
parent
commit
4691fde24a
2 changed files with 2 additions and 2 deletions
  1. 1 0
      file_utils.py
  2. 1 2
      package_web_record.py

+ 1 - 0
file_utils.py

@@ -233,6 +233,7 @@ def createFile(file, content):
 
     with openFile(file, 'w') as f:
         f.write(content)
+        f.close()
 
 def openFile(file, mode):
     return open(file, mode, encoding='UTF-8')

+ 1 - 2
package_web_record.py

@@ -210,8 +210,7 @@ def copyRes(game, sdk, subChannel, config):
                 os.makedirs(mipmapPath)
             iconPath = os.path.join(subChannelPath, 'icon', mipmap, 'record_sdk_icon.png')
             if not os.path.exists(iconPath):
-                os.makedirs(iconPath)
-                print("iconPath ==> " + iconPath)
+                file_utils.createFile(iconPath, '')
             if mipmap == 'mipmap-xhdpi':
                 size = 96
             elif mipmap == 'mipmap-xxhdpi':