Files
middle-server/plugin/NavidromePlaylistSync/saveFile.py
2023-02-04 00:14:50 +08:00

6 lines
189 B
Python

import os
def saveFile(name, data):
tempPath = os.path.join(os.path.dirname(__file__), 'temp')
with open(os.path.join(tempPath, f'{name}.m3u'), 'wb') as code:
code.write(data)