Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

680B


title: If you are using os rename src dest… author: rhnvrm type: post date: 2016-12-19T19:04:05+00:00 url: blog/2016/12/19/if-you-are-using-os-rename-src-dest/ categories:

  • uncategorized tags:
  • python format: status

If you are using os.rename(src,dest) outside the current working directory, you can’t simply use os.rename(filename, “output.mp3”) since it will move the file to the current working directory. You should rather, path.dirname to get the file’s directory and then rename the file. For example you can use `os.rename(file_name, os.path.dirname(file_name) + ‘/{song_title}.mp3’.format(song_title=song_title))`